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

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.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/V8DebuggerImpl.h
diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.h b/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.h
index a8e7637f303e259cb9701854583c27f775138862..b9fc3dbdcf05f4c358c3cbc6c596a1684782d267 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.h
@@ -31,6 +31,7 @@
#ifndef V8DebuggerImpl_h
#define V8DebuggerImpl_h
+#include "platform/inspector_protocol/Collections.h"
#include "platform/inspector_protocol/Maybe.h"
#include "platform/inspector_protocol/Platform.h"
#include "platform/v8_inspector/JavaScriptCallFrame.h"
@@ -41,6 +42,8 @@
#include <v8-debug.h>
#include <v8.h>
+#include <vector>
+
namespace blink {
using protocol::Maybe;
@@ -87,7 +90,7 @@ public:
// Each script inherits debug data from v8::Context where it has been compiled.
// Only scripts whose debug data matches |contextGroupId| will be reported.
// Passing 0 will result in reporting all scripts.
- void getCompiledScripts(int contextGroupId, protocol::Vector<V8DebuggerParsedScript>&);
+ void getCompiledScripts(int contextGroupId, std::vector<V8DebuggerParsedScript>&);
void debuggerAgentEnabled();
void debuggerAgentDisabled();
@@ -155,10 +158,12 @@ private:
v8::Local<v8::String> v8InternalizedString(const char*) const;
void handleV8AsyncTaskEvent(v8::Local<v8::Context>, v8::Local<v8::Object> executionState, v8::Local<v8::Object> eventData);
+ InspectedContext* getContext(int groupId, int contextId) const;
+
+ using ContextsByGroupMap = protocol::HashMap<int, std::unique_ptr<ContextByIdMap>>;
v8::Isolate* m_isolate;
V8DebuggerClient* m_client;
- using ContextsByGroupMap = protocol::HashMap<int, std::unique_ptr<ContextByIdMap>>;
ContextsByGroupMap m_contexts;
using SessionMap = protocol::HashMap<int, V8InspectorSessionImpl*>;
SessionMap m_sessions;
@@ -175,8 +180,8 @@ private:
AsyncTaskToStackTrace m_asyncTaskStacks;
protocol::HashSet<void*> m_recurringTasks;
int m_maxAsyncCallStackDepth;
- protocol::Vector<void*> m_currentTasks;
- protocol::Vector<std::unique_ptr<V8StackTraceImpl>> m_currentStacks;
+ std::vector<void*> m_currentTasks;
+ std::vector<std::unique_ptr<V8StackTraceImpl>> m_currentStacks;
protocol::HashMap<V8DebuggerAgentImpl*, int> m_maxAsyncCallStackDepthMap;
};

Powered by Google App Engine
This is Rietveld 408576698