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

Unified Diff: src/inspector/v8-inspector-impl.h

Issue 2748503002: [inspector] changed a way of preserving stepping between tasks (Closed)
Patch Set: rebased on tunned stepping at return Created 3 years, 9 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
« no previous file with comments | « src/inspector/v8-debugger-agent-impl.cc ('k') | src/inspector/v8-inspector-impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/inspector/v8-inspector-impl.h
diff --git a/src/inspector/v8-inspector-impl.h b/src/inspector/v8-inspector-impl.h
index 9d6e62c908804ea3e2b5ba62ac5c95637313fc53..8ffea34e9ee283d003c4d8469025d3a32ecbfd07 100644
--- a/src/inspector/v8-inspector-impl.h
+++ b/src/inspector/v8-inspector-impl.h
@@ -60,19 +60,8 @@ class V8InspectorImpl : public V8Inspector {
int contextGroupId(v8::Local<v8::Context>);
int contextGroupId(int contextId);
- v8::MaybeLocal<v8::Value> runCompiledScript(v8::Local<v8::Context>,
- v8::Local<v8::Script>);
- v8::MaybeLocal<v8::Value> callFunction(v8::Local<v8::Function>,
- v8::Local<v8::Context>,
- v8::Local<v8::Value> receiver,
- int argc, v8::Local<v8::Value> info[]);
v8::MaybeLocal<v8::Value> compileAndRunInternalScript(v8::Local<v8::Context>,
v8::Local<v8::String>);
- v8::MaybeLocal<v8::Value> callInternalFunction(v8::Local<v8::Function>,
- v8::Local<v8::Context>,
- v8::Local<v8::Value> receiver,
- int argc,
- v8::Local<v8::Value> info[]);
v8::MaybeLocal<v8::Script> compileScript(v8::Local<v8::Context>,
const String16& code,
const String16& fileName);
@@ -126,11 +115,6 @@ class V8InspectorImpl : public V8Inspector {
V8ProfilerAgentImpl* enabledProfilerAgentForGroup(int contextGroupId);
private:
- v8::MaybeLocal<v8::Value> callFunction(
- v8::Local<v8::Function>, v8::Local<v8::Context>,
- v8::Local<v8::Value> receiver, int argc, v8::Local<v8::Value> info[],
- v8::MicrotasksScope::Type runMicrotasks);
-
v8::Isolate* m_isolate;
V8InspectorClient* m_client;
std::unique_ptr<V8Debugger> m_debugger;
« no previous file with comments | « src/inspector/v8-debugger-agent-impl.cc ('k') | src/inspector/v8-inspector-impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698