a8e24319a07a44ead833e8039a4cf14ed47c51d9
[platform/framework/web/crosswalk-tizen.git] /
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.
4
5 #ifndef CONTENT_BROWSER_COMPOSITOR_EVASGL_OUTPUT_SURFACE_CLIENT_H_
6 #define CONTENT_BROWSER_COMPOSITOR_EVASGL_OUTPUT_SURFACE_CLIENT_H_
7
8 #include "cc/output/managed_memory_policy.h"
9 #include "cc/output/output_surface_client.h"
10
11 namespace content {
12
13 class EvasGLOutputSurfaceClient : public cc::OutputSurfaceClient {
14  public:
15   EvasGLOutputSurfaceClient() {}
16
17   void SetNeedsRedrawRect(const gfx::Rect& damage_rect) override {}
18   void DidReceiveSwapBuffersAck() override {}
19   void DidReceiveTextureInUseResponses(
20       const gpu::TextureInUseResponses& responses) override {}
21 };
22
23 }  // namespace content
24
25 #endif  // CONTENT_BROWSER_COMPOSITOR_EVASGL_OUTPUT_SURFACE_CLIENT_H_