| 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:
|
|
|