Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(404)

Unified Diff: cc/layer_tree_host_client.h

Issue 11189043: cc: Rename cc classes and members to match filenames (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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() { }
};
}
« cc/active_animation.h ('K') | « cc/layer_tree_host.cc ('k') | cc/layer_tree_host_common.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698