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

Unified Diff: Source/platform/testing/UnitTestHelpers.cpp

Issue 1110913002: Removing blink::prefix (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 8 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 | « Source/platform/heap/Handle.h ('k') | Source/platform/weborigin/OriginAccessEntry.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/testing/UnitTestHelpers.cpp
diff --git a/Source/platform/testing/UnitTestHelpers.cpp b/Source/platform/testing/UnitTestHelpers.cpp
index bc4a67432b4dd3551293d7dec987d977f00acfa2..97363e3e580a98b7d86e628cc4c204547a43f942 100644
--- a/Source/platform/testing/UnitTestHelpers.cpp
+++ b/Source/platform/testing/UnitTestHelpers.cpp
@@ -33,18 +33,18 @@
namespace blink {
namespace testing {
-class QuitTask : public blink::WebThread::Task {
+class QuitTask : public WebThread::Task {
public:
virtual void run()
{
- blink::Platform::current()->currentThread()->exitRunLoop();
+ Platform::current()->currentThread()->exitRunLoop();
}
};
void runPendingTasks()
{
- blink::Platform::current()->currentThread()->postTask(FROM_HERE, new QuitTask);
- blink::Platform::current()->currentThread()->enterRunLoop();
+ Platform::current()->currentThread()->postTask(FROM_HERE, new QuitTask);
+ Platform::current()->currentThread()->enterRunLoop();
}
}
« no previous file with comments | « Source/platform/heap/Handle.h ('k') | Source/platform/weborigin/OriginAccessEntry.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698