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

Unified Diff: content/renderer/render_frame_impl.h

Issue 1023783004: [DevTools] Move DevToolsAgent to RenderFrameImpl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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: content/renderer/render_frame_impl.h
diff --git a/content/renderer/render_frame_impl.h b/content/renderer/render_frame_impl.h
index 77b19aec12c3189b0578141f51bf5b5fa8868a9d..2804a9b5f4fd5b852395756360d383843bc0e0fa 100644
--- a/content/renderer/render_frame_impl.h
+++ b/content/renderer/render_frame_impl.h
@@ -74,6 +74,7 @@ namespace content {
class ChildFrameCompositingHelper;
class CompositorDependencies;
+class DevToolsAgent;
class ExternalPopupMenu;
class GeolocationDispatcher;
class ManifestManager;
@@ -547,6 +548,8 @@ class CONTENT_EXPORT RenderFrameImpl
ManifestManager* manifest_manager();
+ void CreateDevToolsAgent();
+
protected:
RenderFrameImpl(RenderViewImpl* render_view, int32 routing_id);
@@ -853,6 +856,9 @@ class CONTENT_EXPORT RenderFrameImpl
bool contains_media_player_;
#endif
+ // The devtools agent for this frame, only created for local frame roots.
Charlie Reis 2015/03/24 17:25:13 nit: period or semicolon, not comma.
dgozman 2015/03/25 16:25:50 Done.
+ DevToolsAgent* devtools_agent_;
+
// The geolocation dispatcher attached to this frame, lazily initialized.
GeolocationDispatcher* geolocation_dispatcher_;

Powered by Google App Engine
This is Rietveld 408576698