| 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 05f14164352c0d7f3554a9f4dc1056b783b326b7..f7c99c78deb64ec06d32556d8507aa7a5544bf4b 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptNative.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptNative.h
|
| @@ -5,9 +5,8 @@
|
| #ifndef InjectedScriptNative_h
|
| #define InjectedScriptNative_h
|
|
|
| -#include "wtf/HashMap.h"
|
| +#include "platform/inspector_protocol/Collections.h"
|
| #include "wtf/PassOwnPtr.h"
|
| -#include "wtf/Vector.h"
|
| #include "wtf/text/WTFString.h"
|
| #include <v8.h>
|
|
|
| @@ -33,10 +32,10 @@ private:
|
|
|
| int m_lastBoundObjectId;
|
| v8::Isolate* m_isolate;
|
| - HashMap<int, OwnPtr<v8::Global<v8::Value>>> m_idToWrappedObject;
|
| - typedef HashMap<int, String> IdToObjectGroupName;
|
| + protocol::HashMap<int, OwnPtr<v8::Global<v8::Value>>> m_idToWrappedObject;
|
| + typedef protocol::HashMap<int, String> IdToObjectGroupName;
|
| IdToObjectGroupName m_idToObjectGroupName;
|
| - typedef HashMap<String, Vector<int>> NameToObjectGroup;
|
| + typedef protocol::HashMap<String, protocol::Vector<int>> NameToObjectGroup;
|
| NameToObjectGroup m_nameToObjectGroup;
|
| };
|
|
|
|
|