1 // Copyright 2015 Samsung Electronics. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_BROWSER_COMPOSITOR_EVASGL_OUTPUT_SURFACE_CLIENT_H_
6 #define CONTENT_BROWSER_COMPOSITOR_EVASGL_OUTPUT_SURFACE_CLIENT_H_
8 #include "cc/output/managed_memory_policy.h"
9 #include "cc/output/output_surface_client.h"
13 class EvasGLOutputSurfaceClient : public cc::OutputSurfaceClient {
15 EvasGLOutputSurfaceClient() {}
17 void SetNeedsRedrawRect(const gfx::Rect& damage_rect) override {}
18 void DidReceiveSwapBuffersAck() override {}
19 void DidReceiveTextureInUseResponses(
20 const gpu::TextureInUseResponses& responses) override {}
23 } // namespace content
25 #endif // CONTENT_BROWSER_COMPOSITOR_EVASGL_OUTPUT_SURFACE_CLIENT_H_