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

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/V8FunctionCall.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/V8FunctionCall.h
diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8FunctionCall.h b/third_party/WebKit/Source/platform/v8_inspector/V8FunctionCall.h
index 6babd2fce4d6e5af9342d28cc7d659bb61350b63..7282921036a003f10929cb4113276f628d3cd292 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/V8FunctionCall.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/V8FunctionCall.h
@@ -31,7 +31,8 @@
#ifndef V8FunctionCall_h
#define V8FunctionCall_h
-#include "wtf/Vector.h"
+#include "platform/inspector_protocol/Collections.h"
+
#include "wtf/text/WTFString.h"
#include <v8.h>
@@ -58,7 +59,7 @@ public:
protected:
V8DebuggerClient* m_client;
v8::Local<v8::Context> m_context;
- Vector<v8::Local<v8::Value>> m_arguments;
+ protocol::Vector<v8::Local<v8::Value>> m_arguments;
v8::Local<v8::String> m_name;
v8::Local<v8::Value> m_value;
};

Powered by Google App Engine
This is Rietveld 408576698