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

Unified Diff: third_party/WebKit/Source/web/InspectorRenderingAgent.h

Issue 2738453004: Avoid using declarations in headers which introduce symbol conflicts. (Closed)
Patch Set: Created 3 years, 9 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
Index: third_party/WebKit/Source/web/InspectorRenderingAgent.h
diff --git a/third_party/WebKit/Source/web/InspectorRenderingAgent.h b/third_party/WebKit/Source/web/InspectorRenderingAgent.h
index 7a5b13a649c99f4fb6cd11cda8260ba08475d556..7e48bf49049637aecc144f7fe2a34cc87cbf4e3e 100644
--- a/third_party/WebKit/Source/web/InspectorRenderingAgent.h
+++ b/third_party/WebKit/Source/web/InspectorRenderingAgent.h
@@ -22,21 +22,21 @@ class InspectorRenderingAgent final
static InspectorRenderingAgent* create(WebLocalFrameImpl*, InspectorOverlay*);
// protocol::Dispatcher::PageCommandHandler implementation.
- Response setShowPaintRects(bool) override;
- Response setShowDebugBorders(bool) override;
- Response setShowFPSCounter(bool) override;
- Response setShowScrollBottleneckRects(bool) override;
- Response setShowViewportSizeOnResize(bool) override;
+ protocol::Response setShowPaintRects(bool) override;
+ protocol::Response setShowDebugBorders(bool) override;
+ protocol::Response setShowFPSCounter(bool) override;
+ protocol::Response setShowScrollBottleneckRects(bool) override;
+ protocol::Response setShowViewportSizeOnResize(bool) override;
// InspectorBaseAgent overrides.
- Response disable() override;
+ protocol::Response disable() override;
void restore() override;
DECLARE_VIRTUAL_TRACE();
private:
InspectorRenderingAgent(WebLocalFrameImpl*, InspectorOverlay*);
- Response compositingEnabled();
+ protocol::Response compositingEnabled();
WebViewImpl* webViewImpl();
Member<WebLocalFrameImpl> m_webLocalFrameImpl;
« no previous file with comments | « third_party/WebKit/Source/web/InspectorEmulationAgent.cpp ('k') | third_party/WebKit/Source/web/InspectorRenderingAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698