summaryrefslogtreecommitdiff
path: root/chromium/third_party/WebKit/Source/core/testing/InspectorFrontendClientLocal.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/core/testing/InspectorFrontendClientLocal.cpp')
-rw-r--r--chromium/third_party/WebKit/Source/core/testing/InspectorFrontendClientLocal.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/chromium/third_party/WebKit/Source/core/testing/InspectorFrontendClientLocal.cpp b/chromium/third_party/WebKit/Source/core/testing/InspectorFrontendClientLocal.cpp
index 3d57d2617a4..f61a422654d 100644
--- a/chromium/third_party/WebKit/Source/core/testing/InspectorFrontendClientLocal.cpp
+++ b/chromium/third_party/WebKit/Source/core/testing/InspectorFrontendClientLocal.cpp
@@ -32,15 +32,15 @@
#include "InspectorFrontendClientLocal.h"
#include "bindings/v8/ScriptObject.h"
+#include "bindings/v8/ScriptState.h"
#include "core/inspector/InspectorController.h"
#include "core/inspector/InspectorFrontendHost.h"
#include "core/page/Page.h"
-#include "core/page/Settings.h"
-#include "core/platform/Timer.h"
+#include "core/frame/Settings.h"
+#include "platform/Timer.h"
#include "public/platform/Platform.h"
#include "public/platform/WebThread.h"
#include "wtf/Deque.h"
-#include "wtf/text/WTFString.h"
namespace WebCore {
@@ -68,7 +68,7 @@ public:
private:
void schedule()
{
- class TaskImpl : public WebKit::WebThread::Task {
+ class TaskImpl : public blink::WebThread::Task {
public:
RefPtr<InspectorBackendMessageQueue> owner;
virtual void run()
@@ -78,7 +78,7 @@ private:
};
TaskImpl* taskImpl = new TaskImpl;
taskImpl->owner = this;
- WebKit::Platform::current()->currentThread()->postTask(taskImpl);
+ blink::Platform::current()->currentThread()->postTask(taskImpl);
}
void deliver()