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

Unified Diff: webkit/compositor_bindings/CCThreadImpl.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: webkit/compositor_bindings/CCThreadImpl.h
diff --git a/webkit/compositor_bindings/CCThreadImpl.h b/webkit/compositor_bindings/CCThreadImpl.h
index bd598a94ebad087e9e3e9f7cb74f1af20e80c8a2..259ca4ab34a1f10f752ca85f038c1dcddbf6af07 100644
--- a/webkit/compositor_bindings/CCThreadImpl.h
+++ b/webkit/compositor_bindings/CCThreadImpl.h
@@ -15,18 +15,18 @@ namespace WebKit {
class WebThread;
-// Implements CCThread in terms of WebThread.
-class CCThreadImpl : public cc::CCThread {
+// Implements Thread in terms of WebThread.
+class CCThreadImpl : public cc::Thread {
public:
// Creates a CCThreadImpl wrapping the current thread.
- static scoped_ptr<cc::CCThread> createForCurrentThread();
+ static scoped_ptr<cc::Thread> createForCurrentThread();
- // Creates a CCThread wrapping a non-current WebThread.
- static scoped_ptr<cc::CCThread> createForDifferentThread(WebThread*);
+ // Creates a Thread wrapping a non-current WebThread.
+ static scoped_ptr<cc::Thread> createForDifferentThread(WebThread*);
virtual ~CCThreadImpl();
- virtual void postTask(PassOwnPtr<cc::CCThread::Task>);
- virtual void postDelayedTask(PassOwnPtr<cc::CCThread::Task>, long long delayMs);
+ virtual void postTask(PassOwnPtr<cc::Thread::Task>);
+ virtual void postDelayedTask(PassOwnPtr<cc::Thread::Task>, long long delayMs);
base::PlatformThreadId threadID() const;
private:

Powered by Google App Engine
This is Rietveld 408576698