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(); |
} |
} |