| Index: third_party/WebKit/Source/platform/v8_inspector/InjectedScriptNative.h
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptNative.h b/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptNative.h
|
| index 9a80d57c2f74c47ed88b73e5b3e1a07feaca3136..435bcdb8b75c52f00729421f2954742acc27ff3d 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptNative.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptNative.h
|
| @@ -7,7 +7,7 @@
|
|
|
| #include "platform/inspector_protocol/Collections.h"
|
| #include "platform/inspector_protocol/String16.h"
|
| -#include "wtf/PassOwnPtr.h"
|
| +#include "wtf/PtrUtil.h"
|
| #include <v8.h>
|
|
|
| namespace blink {
|
| @@ -32,7 +32,7 @@ private:
|
|
|
| int m_lastBoundObjectId;
|
| v8::Isolate* m_isolate;
|
| - protocol::HashMap<int, OwnPtr<v8::Global<v8::Value>>> m_idToWrappedObject;
|
| + protocol::HashMap<int, std::unique_ptr<v8::Global<v8::Value>>> m_idToWrappedObject;
|
| typedef protocol::HashMap<int, String16> IdToObjectGroupName;
|
| IdToObjectGroupName m_idToObjectGroupName;
|
| typedef protocol::HashMap<String16, protocol::Vector<int>> NameToObjectGroup;
|
|
|