| Index: Source/bindings/core/v8/V8PerIsolateData.h
|
| diff --git a/Source/bindings/core/v8/V8PerIsolateData.h b/Source/bindings/core/v8/V8PerIsolateData.h
|
| index 6ce92ae94699b01f3b54c777a97c4382ad08d6d1..bcb28b71ef4c55d37fa8d0a81011ab49e3e91fb1 100644
|
| --- a/Source/bindings/core/v8/V8PerIsolateData.h
|
| +++ b/Source/bindings/core/v8/V8PerIsolateData.h
|
| @@ -114,7 +114,7 @@ public:
|
| void runEndOfScopeTasks();
|
| void clearEndOfScopeTasks();
|
|
|
| - void setScriptDebugServer(PassOwnPtr<ScriptDebugServer>);
|
| + void setScriptDebugServer(PassOwnPtrWillBeRawPtr<ScriptDebugServer>);
|
|
|
| private:
|
| V8PerIsolateData();
|
| @@ -150,7 +150,7 @@ private:
|
| bool m_performingMicrotaskCheckpoint;
|
|
|
| Vector<OwnPtr<EndOfScopeTask>> m_endOfScopeTasks;
|
| - OwnPtr<ScriptDebugServer> m_debugServer;
|
| + OwnPtrWillBePersistent<ScriptDebugServer> m_debugServer;
|
| };
|
|
|
| } // namespace blink
|
|
|