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 |