diff options
Diffstat (limited to 'cc/CCThread.h')
-rw-r--r-- | cc/CCThread.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cc/CCThread.h b/cc/CCThread.h index d375932..a20d5e0 100644 --- a/cc/CCThread.h +++ b/cc/CCThread.h @@ -5,8 +5,9 @@ #ifndef CCThread_h #define CCThread_h +#include "base/threading/platform_thread.h" #include <wtf/PassOwnPtr.h> -#include <wtf/Threading.h> +#include <wtf/Noncopyable.h> namespace WebCore { @@ -33,7 +34,7 @@ public: // Executes the task after the specified delay. virtual void postDelayedTask(PassOwnPtr<Task>, long long delayMs) = 0; - virtual WTF::ThreadIdentifier threadID() const = 0; + virtual base::PlatformThreadId threadID() const = 0; }; } |