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

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

Issue 383123009: DevTools: Support async call stacks for FileSystem API (part 1). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 d3cf7d1f714ba97478b674f376d1679f9660a233..fb5278d93740a5791a5ae70d18b872138557cbff 100644
--- a/Source/core/inspector/InspectorDebuggerAgent.h
+++ b/Source/core/inspector/InspectorDebuggerAgent.h
@@ -47,6 +47,7 @@
namespace WebCore {
+class AsyncFileSystemCallbacks;
class Document;
class Event;
class EventListener;
@@ -164,6 +165,10 @@ public:
void didKillAllExecutionContextTasks(ExecutionContext*);
void willPerformExecutionContextTask(ExecutionContext*, ExecutionContextTask*);
void didPerformExecutionContextTask();
+ void didEnqueueAsyncFileSystemCallback(ExecutionContext*, AsyncFileSystemCallbacks*);
+ void didRemoveAsyncFileSystemCallback(ExecutionContext*, AsyncFileSystemCallbacks*);
+ void willHandleAsyncFileSystemCallback(ExecutionContext*, AsyncFileSystemCallbacks*, bool willReschedule, bool hasMore);
+ void didHandleAsyncFileSystemCallback(ExecutionContext*, AsyncFileSystemCallbacks*, bool didReschedule);
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