| Index: third_party/WebKit/Source/core/inspector/MainThreadDebugger.h
|
| diff --git a/third_party/WebKit/Source/core/inspector/MainThreadDebugger.h b/third_party/WebKit/Source/core/inspector/MainThreadDebugger.h
|
| index d0a7046b678fa243e7053d97c68a51589423d492..343d364acf71b2bb3aae6fc0427fe97808643270 100644
|
| --- a/third_party/WebKit/Source/core/inspector/MainThreadDebugger.h
|
| +++ b/third_party/WebKit/Source/core/inspector/MainThreadDebugger.h
|
| @@ -36,7 +36,6 @@
|
| #include "core/inspector/InspectorTaskRunner.h"
|
| #include "core/inspector/ThreadDebugger.h"
|
| #include "platform/heap/Handle.h"
|
| -#include <memory>
|
| #include <v8.h>
|
|
|
| namespace blink {
|
| @@ -63,7 +62,7 @@ public:
|
|
|
| InspectorTaskRunner* taskRunner() const { return m_taskRunner.get(); }
|
| bool isWorker() override { return false; }
|
| - void setClientMessageLoop(std::unique_ptr<ClientMessageLoop>);
|
| + void setClientMessageLoop(PassOwnPtr<ClientMessageLoop>);
|
| int contextGroupId(LocalFrame*);
|
| void contextCreated(ScriptState*, LocalFrame*, SecurityOrigin*);
|
| void contextWillBeDestroyed(ScriptState*);
|
| @@ -85,8 +84,8 @@ private:
|
| bool callingContextCanAccessContext(v8::Local<v8::Context> calling, v8::Local<v8::Context> target) override;
|
| int ensureDefaultContextInGroup(int contextGroupId) override;
|
|
|
| - std::unique_ptr<ClientMessageLoop> m_clientMessageLoop;
|
| - std::unique_ptr<InspectorTaskRunner> m_taskRunner;
|
| + OwnPtr<ClientMessageLoop> m_clientMessageLoop;
|
| + OwnPtr<InspectorTaskRunner> m_taskRunner;
|
|
|
| static MainThreadDebugger* s_instance;
|
|
|
|
|