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

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/PromiseTracker.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/PromiseTracker.h
diff --git a/third_party/WebKit/Source/platform/v8_inspector/PromiseTracker.h b/third_party/WebKit/Source/platform/v8_inspector/PromiseTracker.h
index 5a8eb65ae79f3bb6d37087c5e94729121c99d7b4..067e05f06d6ef482a622489d7ae6302ddccd3f3e 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/PromiseTracker.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/PromiseTracker.h
@@ -6,11 +6,10 @@
#define PromiseTracker_h
#include "platform/inspector_protocol/Allocator.h"
+#include "platform/inspector_protocol/Collections.h"
#include "platform/inspector_protocol/Frontend.h"
#include "platform/inspector_protocol/TypeBuilder.h"
-#include "wtf/HashMap.h"
#include "wtf/PassOwnPtr.h"
-#include "wtf/Vector.h"
#include <v8.h>
namespace blink {
@@ -51,7 +50,7 @@ private:
v8::Isolate* m_isolate;
v8::Persistent<v8::NativeWeakMap> m_promiseToId;
- HashMap<int, OwnPtr<PromiseWrapper>> m_idToPromise;
+ protocol::HashMap<int, OwnPtr<PromiseWrapper>> m_idToPromise;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698