Index: cc/layer_tree_host_client.h |
diff --git a/cc/layer_tree_host_client.h b/cc/layer_tree_host_client.h |
index 1c88a7542363c80eb8163348da3b9e6c2ef8df9b..981e9ec2e98be20e4e061d2869be705cef7d3f3e 100644 |
--- a/cc/layer_tree_host_client.h |
+++ b/cc/layer_tree_host_client.h |
@@ -12,10 +12,10 @@ class WebCompositorOutputSurface; |
} |
namespace cc { |
-class CCInputHandler; |
+class InputHandler; |
class IntSize; |
-class CCLayerTreeHostClient { |
+class LayerTreeHostClient { |
public: |
virtual void willBeginFrame() = 0; |
// Marks finishing compositing-related tasks on the main thread. In threaded mode, this corresponds to didCommit(). |
@@ -25,7 +25,7 @@ public: |
virtual void applyScrollAndScale(const IntSize& scrollDelta, float pageScale) = 0; |
virtual scoped_ptr<WebKit::WebCompositorOutputSurface> createOutputSurface() = 0; |
virtual void didRecreateOutputSurface(bool success) = 0; |
- virtual scoped_ptr<CCInputHandler> createInputHandler() = 0; |
+ virtual scoped_ptr<InputHandler> createInputHandler() = 0; |
virtual void willCommit() = 0; |
virtual void didCommit() = 0; |
virtual void didCommitAndDrawFrame() = 0; |
@@ -35,7 +35,7 @@ public: |
virtual void scheduleComposite() = 0; |
protected: |
- virtual ~CCLayerTreeHostClient() { } |
+ virtual ~LayerTreeHostClient() { } |
}; |
} |