Index: Source/web/WebLocalFrameImpl.h |
diff --git a/Source/web/WebLocalFrameImpl.h b/Source/web/WebLocalFrameImpl.h |
index be4dbb2c2f11f111442a4aeb59c9952e07911ca0..797d6465d58fd5dcc26e699fb331d031ba9fedf3 100644 |
--- a/Source/web/WebLocalFrameImpl.h |
+++ b/Source/web/WebLocalFrameImpl.h |
@@ -53,6 +53,7 @@ class SharedWorkerRepositoryClientImpl; |
class TextFinder; |
class WebAutofillClient; |
class WebDataSourceImpl; |
+class WebDevToolsFrontendImpl; |
class WebFrameClient; |
class WebFrameWidgetImpl; |
class WebPerformance; |
@@ -321,6 +322,10 @@ public: |
void setFrameWidget(WebFrameWidgetImpl*); |
WebFrameWidgetImpl* frameWidget() const; |
+ // DevTools front-end bindings. |
+ void setDevToolsFrontend(WebDevToolsFrontendImpl* frontend) { m_webDevToolsFrontend = frontend; } |
+ WebDevToolsFrontendImpl* devToolsFrontend() { return m_webDevToolsFrontend; } |
+ |
#if ENABLE(OILPAN) |
void trace(Visitor*); |
#endif |
@@ -367,6 +372,8 @@ private: |
OwnPtrWillBeMember<GeolocationClientProxy> m_geolocationClientProxy; |
+ WebDevToolsFrontendImpl* m_webDevToolsFrontend; |
+ |
#if ENABLE(OILPAN) |
// Oilpan: to provide the guarantee of having the frame live until |
// close() is called, an instance keep a self-persistent. It is |