| Index: third_party/WebKit/Source/core/inspector/WorkerInspectorController.cpp
|
| diff --git a/third_party/WebKit/Source/core/inspector/WorkerInspectorController.cpp b/third_party/WebKit/Source/core/inspector/WorkerInspectorController.cpp
|
| index 8603e53fcd90327b64ae570b189ead11fde4da5d..451c2c45e0dd6bf88db8e1d2d96652fc813727d9 100644
|
| --- a/third_party/WebKit/Source/core/inspector/WorkerInspectorController.cpp
|
| +++ b/third_party/WebKit/Source/core/inspector/WorkerInspectorController.cpp
|
| @@ -34,11 +34,11 @@
|
| #include "core/inspector/InspectorInstrumentation.h"
|
| #include "core/inspector/InspectorLogAgent.h"
|
| #include "core/inspector/WorkerThreadDebugger.h"
|
| +#include "core/inspector/protocol/InspectorProtocol.h"
|
| #include "core/workers/WorkerBackingThread.h"
|
| #include "core/workers/WorkerReportingProxy.h"
|
| #include "core/workers/WorkerThread.h"
|
| #include "platform/WebThreadSupportingGC.h"
|
| -#include "platform/inspector_protocol/InspectorProtocol.h"
|
|
|
| namespace blink {
|
|
|
| @@ -84,7 +84,7 @@ void WorkerInspectorController::dispatchMessageFromFrontend(const String& messag
|
| {
|
| if (!m_session)
|
| return;
|
| - protocol::String16 method;
|
| + String method;
|
| if (!protocol::DispatcherBase::getCommandName(message, &method))
|
| return;
|
| m_session->dispatchProtocolMessage(method, message);
|
|
|