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

Unified Diff: Source/core/inspector/InspectorDebuggerAgent.h

Issue 293963003: Remove ScriptObject (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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: Source/core/inspector/InspectorDebuggerAgent.h
diff --git a/Source/core/inspector/InspectorDebuggerAgent.h b/Source/core/inspector/InspectorDebuggerAgent.h
index f3b9959fef0cd902db43075fcc4a09a1f0be6691..95f27774055466c8f3084bf6b2b369eff977724e 100644
--- a/Source/core/inspector/InspectorDebuggerAgent.h
+++ b/Source/core/inspector/InspectorDebuggerAgent.h
@@ -164,9 +164,9 @@ public:
void willPerformPromiseTask(ExecutionContext*, ExecutionContextTask*);
void didPerformPromiseTask();
bool isPromiseTrackerEnabled();
- void didCreatePromise(const ScriptObject& promise);
- void didUpdatePromiseParent(const ScriptObject& promise, const ScriptObject& parentPromise);
- void didUpdatePromiseState(const ScriptObject& promise, V8PromiseCustom::PromiseState, const ScriptValue& result);
+ void didCreatePromise(const ScriptValue& promise);
+ void didUpdatePromiseParent(const ScriptValue& promise, const ScriptValue& parentPromise);
+ void didUpdatePromiseState(const ScriptValue& promise, V8PromiseCustom::PromiseState, const ScriptValue& result);
bool canBreakProgram();
void breakProgram(InspectorFrontend::Debugger::Reason::Enum breakReason, PassRefPtr<JSONObject> data);
void scriptExecutionBlockedByCSP(const String& directiveText);

Powered by Google App Engine
This is Rietveld 408576698