| 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()
|
|
|