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

Unified Diff: third_party/WebKit/Source/platform/inspector_protocol/Array.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/Array.h
diff --git a/third_party/WebKit/Source/platform/inspector_protocol/Array.h b/third_party/WebKit/Source/platform/inspector_protocol/Array.h
index f01370b0354e11256d53bb6b18a8c6e3225d3387..4ab846611d50124e4cb60923703007a13fcddae2 100644
--- a/third_party/WebKit/Source/platform/inspector_protocol/Array.h
+++ b/third_party/WebKit/Source/platform/inspector_protocol/Array.h
@@ -6,10 +6,10 @@
#define Array_h
#include "platform/PlatformExport.h"
+#include "platform/inspector_protocol/Collections.h"
#include "platform/inspector_protocol/ErrorSupport.h"
#include "platform/inspector_protocol/ValueConversions.h"
#include "platform/inspector_protocol/Values.h"
-#include "wtf/Vector.h"
#include "wtf/text/WTFString.h"
namespace blink {
@@ -67,7 +67,7 @@ public:
}
private:
- Vector<T> m_vector;
+ protocol::Vector<T> m_vector;
};
template<> class Array<String> : public ArrayBase<String> {};
@@ -125,7 +125,7 @@ public:
}
private:
- Vector<OwnPtr<T>> m_vector;
+ protocol::Vector<OwnPtr<T>> m_vector;
};
} // namespace platform

Powered by Google App Engine
This is Rietveld 408576698