Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(220)

Unified Diff: content/renderer/devtools/devtools_client.h

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/devtools/devtools_agent_filter.cc ('k') | content/renderer/devtools/devtools_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
};
« no previous file with comments | « content/renderer/devtools/devtools_agent_filter.cc ('k') | content/renderer/devtools/devtools_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698