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

Unified Diff: cc/CCLayerTreeHostClient.h

Issue 11122003: [cc] Rename all cc/ filenames to Chromium style (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
« no previous file with comments | « cc/CCLayerTreeHost.cpp ('k') | cc/CCLayerTreeHostCommon.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/CCLayerTreeHostClient.h
diff --git a/cc/CCLayerTreeHostClient.h b/cc/CCLayerTreeHostClient.h
index 1c88a7542363c80eb8163348da3b9e6c2ef8df9b..4a4f608cd976e56955c0326cd36f41a2aa286155 100644
--- a/cc/CCLayerTreeHostClient.h
+++ b/cc/CCLayerTreeHostClient.h
@@ -2,42 +2,5 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CCLayerTreeHostClient_h
-#define CCLayerTreeHostClient_h
-
-#include "base/memory/scoped_ptr.h"
-
-namespace WebKit {
-class WebCompositorOutputSurface;
-}
-
-namespace cc {
-class CCInputHandler;
-class IntSize;
-
-class CCLayerTreeHostClient {
-public:
- virtual void willBeginFrame() = 0;
- // Marks finishing compositing-related tasks on the main thread. In threaded mode, this corresponds to didCommit().
- virtual void didBeginFrame() = 0;
- virtual void animate(double frameBeginTime) = 0;
- virtual void layout() = 0;
- 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 void willCommit() = 0;
- virtual void didCommit() = 0;
- virtual void didCommitAndDrawFrame() = 0;
- virtual void didCompleteSwapBuffers() = 0;
-
- // Used only in the single-threaded path.
- virtual void scheduleComposite() = 0;
-
-protected:
- virtual ~CCLayerTreeHostClient() { }
-};
-
-}
-
-#endif // CCLayerTreeHostClient_h
+// Temporary forwarding header
+#include "cc/layer_tree_host_client.h"
« no previous file with comments | « cc/CCLayerTreeHost.cpp ('k') | cc/CCLayerTreeHostCommon.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698