| Index: third_party/WebKit/Source/core/inspector/v8/V8DebuggerAgentImpl.h
|
| diff --git a/third_party/WebKit/Source/core/inspector/v8/V8DebuggerAgentImpl.h b/third_party/WebKit/Source/core/inspector/v8/V8DebuggerAgentImpl.h
|
| index 8f6bbcd01985488ce89ce6281280734aee064973..86441482b808bc70c40323f95ba1a742f1c3b9ef 100644
|
| --- a/third_party/WebKit/Source/core/inspector/v8/V8DebuggerAgentImpl.h
|
| +++ b/third_party/WebKit/Source/core/inspector/v8/V8DebuggerAgentImpl.h
|
| @@ -129,7 +129,7 @@ public:
|
| void removeBreakpoint(const String& scriptId, int lineNumber, int columnNumber, BreakpointSource) override;
|
|
|
| // Async call stacks implementation
|
| - PassRefPtrWillBeRawPtr<ScriptAsyncCallStack> currentAsyncStackTraceForConsole() override;
|
| + PassRefPtr<ScriptAsyncCallStack> currentAsyncStackTraceForConsole() override;
|
| int traceAsyncOperationStarting(const String& description) override;
|
| void traceAsyncCallbackStarting(int operationId) override;
|
| void traceAsyncCallbackCompleted() override;
|
| @@ -199,11 +199,11 @@ private:
|
| StepOut
|
| };
|
|
|
| - RawPtrWillBeWeakPersistent<InjectedScriptManager> m_injectedScriptManager;
|
| + InjectedScriptManager* m_injectedScriptManager;
|
| V8DebuggerImpl* m_debugger;
|
| int m_contextGroupId;
|
| bool m_enabled;
|
| - RawPtrWillBeWeakPersistent<InspectorState> m_state;
|
| + InspectorState* m_state;
|
| InspectorFrontend::Debugger* m_frontend;
|
| v8::Isolate* m_isolate;
|
| RefPtr<ScriptState> m_pausedScriptState;
|
|
|