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

Unified Diff: Source/core/frame/LocalFrame.h

Issue 898593002: DevTools: use per-LocalFrame instrumenting agents instead of per-Page ones. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fixed assertion Created 5 years, 11 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
« no previous file with comments | « Source/core/frame/FrameView.cpp ('k') | Source/core/frame/LocalFrame.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/LocalFrame.h
diff --git a/Source/core/frame/LocalFrame.h b/Source/core/frame/LocalFrame.h
index e68a17fd2a3da52db93a5f4aa7524b25622881fc..c9e2193a7600891d7f30a5f22753319478e0a6e1 100644
--- a/Source/core/frame/LocalFrame.h
+++ b/Source/core/frame/LocalFrame.h
@@ -57,6 +57,7 @@ namespace blink {
class InputMethodController;
class IntPoint;
class IntSize;
+ class InstrumentingAgents;
class LocalDOMWindow;
class Node;
class Range;
@@ -125,6 +126,9 @@ namespace blink {
// should be updated to avoid storing things on the main frame.
LocalFrame* localFrameRoot();
+ InstrumentingAgents* instrumentingAgents();
+ void setInstrumentingAgents(InstrumentingAgents*);
+
// ======== All public functions below this point are candidates to move out of LocalFrame into another class. ========
bool inScope(TreeScope*) const;
@@ -222,6 +226,8 @@ namespace blink {
float m_textZoomFactor;
bool m_inViewSourceMode;
+
+ RefPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents;
};
inline void LocalFrame::init()
« no previous file with comments | « Source/core/frame/FrameView.cpp ('k') | Source/core/frame/LocalFrame.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698