Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(548)

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/InjectedScriptManager.h

Issue 1758313002: DevTools: introduce collections shim to be backed by non-wtf in v8_inspector. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/v8_inspector/InjectedScriptManager.h
diff --git a/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptManager.h b/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptManager.h
index f56e6f0929bbc9d941646de8625d5c44c77a98b8..3f862590bd89fc8728cffee1c7bc51d078a565c6 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptManager.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptManager.h
@@ -31,7 +31,7 @@
#define InjectedScriptManager_h
#include "platform/inspector_protocol/Allocator.h"
-#include "wtf/HashMap.h"
+#include "platform/inspector_protocol/Collections.h"
#include "wtf/text/WTFString.h"
#include <v8.h>
@@ -66,7 +66,7 @@ private:
v8::Local<v8::Object> createInjectedScript(const String& source, v8::Local<v8::Context>, int id, InjectedScriptNative*);
- typedef HashMap<int, OwnPtr<InjectedScript>> IdToInjectedScriptMap;
+ typedef protocol::HashMap<int, OwnPtr<InjectedScript>> IdToInjectedScriptMap;
IdToInjectedScriptMap m_idToInjectedScript;
OwnPtr<InjectedScriptHost> m_injectedScriptHost;
bool m_customObjectFormatterEnabled;

Powered by Google App Engine
This is Rietveld 408576698