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

Unified Diff: Source/web/InspectorFrontendClientImpl.h

Issue 398673003: Rename WebCore namespace to blink in bindings and web (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 months 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 | « Source/web/InspectorClientImpl.cpp ('k') | Source/web/InspectorFrontendClientImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/InspectorFrontendClientImpl.h
diff --git a/Source/web/InspectorFrontendClientImpl.h b/Source/web/InspectorFrontendClientImpl.h
index 8b1cffe62aac70223b23c69a76d38c4815118863..4e927b182892fbbf901deef297894279c8736dc8 100644
--- a/Source/web/InspectorFrontendClientImpl.h
+++ b/Source/web/InspectorFrontendClientImpl.h
@@ -34,7 +34,7 @@
#include "core/inspector/InspectorFrontendClient.h"
#include "wtf/Noncopyable.h"
-namespace WebCore {
+namespace blink {
class InspectorFrontendHost;
class Page;
}
@@ -44,10 +44,10 @@ namespace blink {
class WebDevToolsFrontendClient;
class WebDevToolsFrontendImpl;
-class InspectorFrontendClientImpl FINAL : public WebCore::InspectorFrontendClient {
+class InspectorFrontendClientImpl FINAL : public blink::InspectorFrontendClient {
WTF_MAKE_NONCOPYABLE(InspectorFrontendClientImpl);
public:
- InspectorFrontendClientImpl(WebCore::Page*, WebDevToolsFrontendClient*, WebDevToolsFrontendImpl*);
+ InspectorFrontendClientImpl(blink::Page*, WebDevToolsFrontendClient*, WebDevToolsFrontendImpl*);
virtual ~InspectorFrontendClientImpl();
// InspectorFrontendClient methods:
@@ -60,9 +60,9 @@ public:
virtual bool isUnderTest() OVERRIDE;
private:
- WebCore::Page* m_frontendPage;
+ blink::Page* m_frontendPage;
WebDevToolsFrontendClient* m_client;
- RefPtr<WebCore::InspectorFrontendHost> m_frontendHost;
+ RefPtr<blink::InspectorFrontendHost> m_frontendHost;
};
} // namespace blink
« no previous file with comments | « Source/web/InspectorClientImpl.cpp ('k') | Source/web/InspectorFrontendClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698