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

Unified Diff: Source/core/inspector/InspectorController.h

Issue 173763002: DevTools: hide page overlay layers in LayerTreeAgent (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: removed stray watchdog from test Created 6 years, 10 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: Source/core/inspector/InspectorController.h
diff --git a/Source/core/inspector/InspectorController.h b/Source/core/inspector/InspectorController.h
index 95402926b9db16e93b943ccc3511c1262a05cffa..1a6744fec17b2f4a64ef914b8e4777642c9e3fb2 100644
--- a/Source/core/inspector/InspectorController.h
+++ b/Source/core/inspector/InspectorController.h
@@ -43,6 +43,7 @@ namespace WebCore {
class DOMWrapperWorld;
class Frame;
class GraphicsContext;
+class GraphicsLayer;
class InjectedScriptManager;
class InspectorBackendDispatcher;
class InspectorAgent;
@@ -51,6 +52,7 @@ class InspectorDOMAgent;
class InspectorFrontend;
class InspectorFrontendChannel;
class InspectorFrontendClient;
+class InspectorLayerTreeAgent;
class InspectorPageAgent;
class InspectorTimelineAgent;
class InspectorOverlay;
@@ -130,6 +132,8 @@ public:
void scriptsEnabled(bool);
+ void willAddPageOverlay(const GraphicsLayer*);
+ void didRemovePageOverlay(const GraphicsLayer*);
private:
InspectorController(Page*, InspectorClient*);
@@ -145,6 +149,7 @@ private:
InspectorDOMAgent* m_domAgent;
InspectorPageAgent* m_pageAgent;
InspectorTimelineAgent* m_timelineAgent;
+ InspectorLayerTreeAgent* m_layerTreeAgent;
RefPtr<InspectorBackendDispatcher> m_inspectorBackendDispatcher;
OwnPtr<InspectorFrontendClient> m_inspectorFrontendClient;
« no previous file with comments | « LayoutTests/inspector/resources/composited-iframe.html ('k') | Source/core/inspector/InspectorController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698