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

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/InjectedScriptHost.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: for landing 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/InjectedScriptHost.h
diff --git a/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptHost.h b/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptHost.h
index 932ed905e30a6c63eae8f71084c80bf47873648c..e63684b4698cde2e5cbbdea9e56fcefc335fbabe 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptHost.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptHost.h
@@ -30,9 +30,9 @@
#ifndef InjectedScriptHost_h
#define InjectedScriptHost_h
+#include "platform/inspector_protocol/Collections.h"
#include "platform/v8_inspector/public/V8RuntimeAgent.h"
#include "wtf/PassOwnPtr.h"
-#include "wtf/Vector.h"
#include "wtf/text/WTFString.h"
#include <v8.h>
@@ -87,7 +87,7 @@ private:
V8DebuggerAgentImpl* m_debuggerAgent;
OwnPtr<V8RuntimeAgent::InspectCallback> m_inspectCallback;
OwnPtr<V8RuntimeAgent::ClearConsoleCallback> m_clearConsoleCallback;
- Vector<OwnPtr<V8RuntimeAgent::Inspectable>> m_inspectedObjects;
+ protocol::Vector<OwnPtr<V8RuntimeAgent::Inspectable>> m_inspectedObjects;
v8::Global<v8::FunctionTemplate> m_wrapperTemplate;
};

Powered by Google App Engine
This is Rietveld 408576698