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

Unified Diff: cc/test/CCSchedulerTestCommon.h

Issue 10913158: Avoid using WTF threading code in cc (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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/CCThread.h ('k') | webkit/compositor_bindings/CCThreadImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/CCSchedulerTestCommon.h
diff --git a/cc/test/CCSchedulerTestCommon.h b/cc/test/CCSchedulerTestCommon.h
index cb7851032e86e325e2aa9c70439f02e557eef0ce..e7bdce7113448889009f07db2843fb764a9a61ee 100644
--- a/cc/test/CCSchedulerTestCommon.h
+++ b/cc/test/CCSchedulerTestCommon.h
@@ -8,6 +8,7 @@
#include "CCDelayBasedTimeSource.h"
#include "CCFrameRateController.h"
#include "CCThread.h"
+#include "base/threading/platform_thread.h"
#include <gtest/gtest.h>
#include <wtf/OwnPtr.h>
@@ -64,7 +65,7 @@ public:
m_pendingTask = task;
m_pendingTaskDelay = delay;
}
- virtual WTF::ThreadIdentifier threadID() const { return 0; }
+ virtual base::PlatformThreadId threadID() const { return 0; }
protected:
OwnPtr<Task> m_pendingTask;
« no previous file with comments | « cc/CCThread.h ('k') | webkit/compositor_bindings/CCThreadImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698