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

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

Issue 1880833002: Move to protocol::Vector (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moved hash to a String16STL.h (not yet in this repo) Created 4 years, 8 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/JavaScriptCallFrame.h
diff --git a/third_party/WebKit/Source/platform/v8_inspector/JavaScriptCallFrame.h b/third_party/WebKit/Source/platform/v8_inspector/JavaScriptCallFrame.h
index d2048db44ac3bd2d3c2a96668127c1dc4fe17934..24fc0eb92a7e93fd1d3ac4bfe2f30ca48fd0e9e4 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/JavaScriptCallFrame.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/JavaScriptCallFrame.h
@@ -31,6 +31,7 @@
#ifndef JavaScriptCallFrame_h
#define JavaScriptCallFrame_h
+#include "platform/inspector_protocol/Collections.h"
#include "platform/inspector_protocol/String16.h"
#include "wtf/OwnPtr.h"
#include "wtf/PassOwnPtr.h"
@@ -69,7 +70,7 @@ private:
v8::Global<v8::FunctionTemplate> m_wrapperTemplate;
};
-using JavaScriptCallFrames = Vector<OwnPtr<JavaScriptCallFrame>>;
+using JavaScriptCallFrames = protocol::Vector<OwnPtr<JavaScriptCallFrame>>;
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698