| Index: Source/core/testing/InspectorFrontendClientLocal.cpp
|
| diff --git a/Source/core/testing/InspectorFrontendClientLocal.cpp b/Source/core/testing/InspectorFrontendClientLocal.cpp
|
| index 52952d811aef35c3837ebf74d28642d81e25318f..1adc4ab7f432ced50695710014aaa43db0534169 100644
|
| --- a/Source/core/testing/InspectorFrontendClientLocal.cpp
|
| +++ b/Source/core/testing/InspectorFrontendClientLocal.cpp
|
| @@ -69,7 +69,7 @@ public:
|
| private:
|
| void schedule()
|
| {
|
| - class TaskImpl : public WebKit::WebThread::Task {
|
| + class TaskImpl : public blink::WebThread::Task {
|
| public:
|
| RefPtr<InspectorBackendMessageQueue> owner;
|
| virtual void run()
|
| @@ -79,7 +79,7 @@ private:
|
| };
|
| TaskImpl* taskImpl = new TaskImpl;
|
| taskImpl->owner = this;
|
| - WebKit::Platform::current()->currentThread()->postTask(taskImpl);
|
| + blink::Platform::current()->currentThread()->postTask(taskImpl);
|
| }
|
|
|
| void deliver()
|
|
|