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

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

Issue 2087953004: Switch v8 inspector to stl collections (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 6 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/V8ProfilerAgentImpl.h
diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.h b/third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.h
index 7fa5f49b4684e18a6a3a22aaca24ebf32137a9a9..03b8f703ae1215f193fe27eacc0680923eadd47a 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.h
@@ -9,6 +9,8 @@
#include "platform/inspector_protocol/String16.h"
#include "platform/v8_inspector/protocol/Profiler.h"
+#include <vector>
+
namespace v8 {
class Isolate;
}
@@ -50,7 +52,7 @@ private:
bool m_enabled;
bool m_recordingCPUProfile;
class ProfileDescriptor;
- protocol::Vector<ProfileDescriptor> m_startedProfiles;
+ std::vector<ProfileDescriptor> m_startedProfiles;
String16 m_frontendInitiatedProfileId;
};

Powered by Google App Engine
This is Rietveld 408576698