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

Unified Diff: webkit/compositor_bindings/CCThreadImpl.h

Issue 10914268: Change cc files from namespace WebCore to cc (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 8 years, 3 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/test/MockCCQuadCuller.h ('k') | webkit/compositor_bindings/CCThreadImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/compositor_bindings/CCThreadImpl.h
diff --git a/webkit/compositor_bindings/CCThreadImpl.h b/webkit/compositor_bindings/CCThreadImpl.h
index 31b017e0e7fa7d8041585b33ca5474961945bf07..b45acb3fa28fed8bdd9a8dd1d7203a8b55788f7b 100644
--- a/webkit/compositor_bindings/CCThreadImpl.h
+++ b/webkit/compositor_bindings/CCThreadImpl.h
@@ -15,17 +15,17 @@ namespace WebKit {
class WebThread;
// Implements CCThread in terms of WebThread.
-class CCThreadImpl : public WebCore::CCThread {
+class CCThreadImpl : public cc::CCThread {
public:
// Creates a CCThreadImpl wrapping the current thread.
- static PassOwnPtr<WebCore::CCThread> createForCurrentThread();
+ static PassOwnPtr<cc::CCThread> createForCurrentThread();
// Creates a CCThread wrapping a non-current WebThread.
- static PassOwnPtr<WebCore::CCThread> createForDifferentThread(WebThread*);
+ static PassOwnPtr<cc::CCThread> createForDifferentThread(WebThread*);
virtual ~CCThreadImpl();
- virtual void postTask(PassOwnPtr<WebCore::CCThread::Task>);
- virtual void postDelayedTask(PassOwnPtr<WebCore::CCThread::Task>, long long delayMs);
+ virtual void postTask(PassOwnPtr<cc::CCThread::Task>);
+ virtual void postDelayedTask(PassOwnPtr<cc::CCThread::Task>, long long delayMs);
base::PlatformThreadId threadID() const;
private:
« no previous file with comments | « cc/test/MockCCQuadCuller.h ('k') | webkit/compositor_bindings/CCThreadImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698