Index: content/renderer/devtools/devtools_client.h |
diff --git a/content/renderer/devtools/devtools_client.h b/content/renderer/devtools/devtools_client.h |
index 1c9d3f8fc20ecfe0399552761c4a13a8f1d44fdc..be1e902cdfff7ced1389c71bc7abb1fc77f585d2 100644 |
--- a/content/renderer/devtools/devtools_client.h |
+++ b/content/renderer/devtools/devtools_client.h |
@@ -12,7 +12,7 @@ |
#include "content/public/renderer/render_view_observer.h" |
#include "third_party/WebKit/public/web/WebDevToolsFrontendClient.h" |
-namespace WebKit { |
+namespace blink { |
class WebDevToolsFrontend; |
class WebString; |
} |
@@ -29,7 +29,7 @@ class RenderViewImpl; |
// code in glue |
class CONTENT_EXPORT DevToolsClient |
: public RenderViewObserver, |
- NON_EXPORTED_BASE(public WebKit::WebDevToolsFrontendClient) { |
+ NON_EXPORTED_BASE(public blink::WebDevToolsFrontendClient) { |
public: |
explicit DevToolsClient(RenderViewImpl* render_view); |
virtual ~DevToolsClient(); |
@@ -39,14 +39,14 @@ class CONTENT_EXPORT DevToolsClient |
virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; |
// WebDevToolsFrontendClient implementation. |
- virtual void sendMessageToBackend(const WebKit::WebString&) OVERRIDE; |
- virtual void sendMessageToEmbedder(const WebKit::WebString&) OVERRIDE; |
+ virtual void sendMessageToBackend(const blink::WebString&) OVERRIDE; |
+ virtual void sendMessageToEmbedder(const blink::WebString&) OVERRIDE; |
virtual bool isUnderTest() OVERRIDE; |
void OnDispatchOnInspectorFrontend(const std::string& message); |
- scoped_ptr<WebKit::WebDevToolsFrontend> web_tools_frontend_; |
+ scoped_ptr<blink::WebDevToolsFrontend> web_tools_frontend_; |
DISALLOW_COPY_AND_ASSIGN(DevToolsClient); |
}; |