| Index: Source/core/inspector/InspectorRuntimeAgent.h
|
| diff --git a/Source/core/inspector/InspectorRuntimeAgent.h b/Source/core/inspector/InspectorRuntimeAgent.h
|
| index 06dc681cbba167758e6f4c43d5bc9c0200c86492..b9a39f8798e85b32db0c6eb1441b7426f0e27f02 100644
|
| --- a/Source/core/inspector/InspectorRuntimeAgent.h
|
| +++ b/Source/core/inspector/InspectorRuntimeAgent.h
|
| @@ -51,6 +51,7 @@ class InspectorRuntimeAgent : public InspectorBaseAgent<InspectorRuntimeAgent>,
|
| WTF_MAKE_NONCOPYABLE(InspectorRuntimeAgent);
|
| public:
|
| virtual ~InspectorRuntimeAgent();
|
| + virtual void trace(Visitor*) OVERRIDE;
|
|
|
| // Part of the protocol.
|
| virtual void enable(ErrorString*) OVERRIDE;
|
| @@ -102,8 +103,7 @@ protected:
|
| ScriptStateToId m_scriptStateToId;
|
|
|
| private:
|
| - // FIXME: Oilpan: Move InjectedScriptManager to heap in follow-up CL.
|
| - InjectedScriptManager* m_injectedScriptManager;
|
| + RawPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager;
|
| ScriptDebugServer* m_scriptDebugServer;
|
| };
|
|
|
|
|