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; |