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

Unified Diff: Source/web/InspectorClientImpl.h

Issue 462613002: Cleanup namespace usage in Source/web/[A-V]*.h (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Addressing comments Created 6 years, 4 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/GraphicsLayerFactoryChromium.h ('k') | Source/web/InspectorFrontendClientImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/InspectorClientImpl.h
diff --git a/Source/web/InspectorClientImpl.h b/Source/web/InspectorClientImpl.h
index 9ad06e9b5b1fc418fee74c119c16864777b52007..a5ffdf76cd15003ffd8c4f42c32a35018bf86c92 100644
--- a/Source/web/InspectorClientImpl.h
+++ b/Source/web/InspectorClientImpl.h
@@ -42,7 +42,7 @@ class WebDevToolsAgentClient;
class WebDevToolsAgentImpl;
class WebViewImpl;
-class InspectorClientImpl FINAL : public blink::InspectorClient, public blink::InspectorFrontendChannel {
+class InspectorClientImpl FINAL : public InspectorClient, public InspectorFrontendChannel {
public:
explicit InspectorClientImpl(WebViewImpl*);
virtual ~InspectorClientImpl();
@@ -51,7 +51,7 @@ public:
virtual void highlight() OVERRIDE;
virtual void hideHighlight() OVERRIDE;
- virtual void sendMessageToFrontend(PassRefPtr<blink::JSONObject>) OVERRIDE;
+ virtual void sendMessageToFrontend(PassRefPtr<JSONObject>) OVERRIDE;
virtual void flush() OVERRIDE;
virtual void updateInspectorStateCookie(const WTF::String&) OVERRIDE;
@@ -67,13 +67,13 @@ public:
virtual void setContinuousPaintingEnabled(bool) OVERRIDE;
virtual void setShowScrollBottleneckRects(bool) OVERRIDE;
virtual void resetScrollAndPageScaleFactor() OVERRIDE;
- virtual void showContextMenu(float x, float y, PassRefPtr<blink::ContextMenuProvider>) OVERRIDE;
+ virtual void showContextMenu(float x, float y, PassRefPtr<ContextMenuProvider>) OVERRIDE;
virtual void getAllocatedObjects(HashSet<const void*>&) OVERRIDE;
virtual void dumpUncountedAllocatedObjects(const HashMap<const void*, size_t>&) OVERRIDE;
- virtual void dispatchKeyEvent(const blink::PlatformKeyboardEvent&) OVERRIDE;
- virtual void dispatchMouseEvent(const blink::PlatformMouseEvent&) OVERRIDE;
+ virtual void dispatchKeyEvent(const PlatformKeyboardEvent&) OVERRIDE;
+ virtual void dispatchMouseEvent(const PlatformMouseEvent&) OVERRIDE;
virtual void setTraceEventCallback(const String& categoryFilter, TraceEventCallback) OVERRIDE;
virtual void resetTraceEventCallback() OVERRIDE;
« no previous file with comments | « Source/web/GraphicsLayerFactoryChromium.h ('k') | Source/web/InspectorFrontendClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698