| Index: third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.h
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.h b/third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.h
|
| index bad30bed9a7657b339b76e3bbb2c105e898d3173..cbaa9204f873f12751038817674fc284da3cf1b9 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.h
|
| @@ -55,6 +55,16 @@ public:
|
| V8HeapProfilerAgent* heapProfilerAgent() override;
|
| V8ProfilerAgent* profilerAgent() override;
|
| V8RuntimeAgent* runtimeAgent() override;
|
| + void schedulePauseOnNextStatement(const String16& breakReason, PassOwnPtr<protocol::DictionaryValue> data) override;
|
| + void cancelPauseOnNextStatement() override;
|
| + void breakProgram(const String16& breakReason, PassOwnPtr<protocol::DictionaryValue> data) override;
|
| + void breakProgramOnException(const String16& breakReason, PassOwnPtr<protocol::DictionaryValue> data) override;
|
| + void setSkipAllPauses(bool) override;
|
| + void asyncTaskScheduled(const String16& taskName, void* task, bool recurring) override;
|
| + void asyncTaskCanceled(void* task) override;
|
| + void asyncTaskStarted(void* task) override;
|
| + void asyncTaskFinished(void* task) override;
|
| + void allAsyncTasksCanceled() override;
|
|
|
| void addInspectedObject(PassOwnPtr<V8RuntimeAgent::Inspectable>);
|
| V8RuntimeAgent::Inspectable* inspectedObject(unsigned num);
|
|
|