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

Unified Diff: third_party/WebKit/Source/platform/inspector_protocol/ErrorSupport.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/inspector_protocol/ErrorSupport.h
diff --git a/third_party/WebKit/Source/platform/inspector_protocol/ErrorSupport.h b/third_party/WebKit/Source/platform/inspector_protocol/ErrorSupport.h
index c73b444afc6457b11e156fc6bf6c481163dd5c8e..14ad8a228bfdc860c77c75d122f823b456e3c8a5 100644
--- a/third_party/WebKit/Source/platform/inspector_protocol/ErrorSupport.h
+++ b/third_party/WebKit/Source/platform/inspector_protocol/ErrorSupport.h
@@ -6,6 +6,7 @@
#define ErrorSupport_h
#include "platform/PlatformExport.h"
+#include "platform/inspector_protocol/Collections.h"
#include "wtf/text/WTFString.h"
namespace blink {
@@ -25,8 +26,8 @@ public:
String errors();
private:
- Vector<String> m_path;
- Vector<String> m_errors;
+ protocol::Vector<String> m_path;
+ protocol::Vector<String> m_errors;
String* m_errorString;
};

Powered by Google App Engine
This is Rietveld 408576698