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

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

Issue 1921143002: [DevTools] Align Console implementation with The JSey way (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move-part-command-line-api-to-native
Patch Set: 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/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 654c1203703166cf3ac075a202f2a6d068d7a669..ec39df7a92b5b63773d7b3afe9737587294a9b1c 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.h
@@ -121,9 +121,6 @@ public:
void disconnect(V8InspectorSessionImpl*);
V8InspectorSessionImpl* sessionForContextGroup(int contextGroupId);
- v8::MaybeLocal<v8::FunctionTemplate> functionTemplate(const String16& name);
- void setFunctionTemplate(const String16& name, v8::Local<v8::FunctionTemplate>);
-
private:
void enable();
void disable();
@@ -155,15 +152,12 @@ private:
SessionMap m_sessions;
int m_enabledAgentsCount;
bool m_breakpointsActivated;
- v8::Global<v8::FunctionTemplate> m_breakProgramCallbackTemplate;
v8::Global<v8::Object> m_debuggerScript;
v8::Global<v8::Context> m_debuggerContext;
v8::Local<v8::Object> m_executionState;
v8::Local<v8::Context> m_pausedContext;
bool m_runningNestedMessageLoop;
v8::Global<v8::Context> m_regexContext;
- using FunctionTemplateMap = protocol::HashMap<String16, OwnPtr<v8::Global<v8::FunctionTemplate>>>;
- FunctionTemplateMap m_templates;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698