Index: third_party/WebKit/Source/platform/v8_inspector/public/V8DebuggerAgent.h |
diff --git a/third_party/WebKit/Source/platform/v8_inspector/public/V8DebuggerAgent.h b/third_party/WebKit/Source/platform/v8_inspector/public/V8DebuggerAgent.h |
index 267a291425ac7fc5623179dde7859b09448c6f8d..6a18e62fca9a4c1c95afc6127638619d8385af92 100644 |
--- a/third_party/WebKit/Source/platform/v8_inspector/public/V8DebuggerAgent.h |
+++ b/third_party/WebKit/Source/platform/v8_inspector/public/V8DebuggerAgent.h |
@@ -15,24 +15,7 @@ class V8RuntimeAgent; |
class PLATFORM_EXPORT V8DebuggerAgent : public protocol::Backend::Debugger, public V8Debugger::Agent<protocol::Frontend::Debugger> { |
public: |
- static const char backtraceObjectGroup[]; |
- |
virtual ~V8DebuggerAgent() { } |
- |
- // API for the embedder to report native activities. |
- virtual void schedulePauseOnNextStatement(const String16& breakReason, PassOwnPtr<protocol::DictionaryValue> data) = 0; |
- virtual void cancelPauseOnNextStatement() = 0; |
- virtual void breakProgram(const String16& breakReason, PassOwnPtr<protocol::DictionaryValue> data) = 0; |
- virtual void breakProgramOnException(const String16& breakReason, PassOwnPtr<protocol::DictionaryValue> data) = 0; |
- |
- virtual V8Debugger& debugger() = 0; |
- |
- // Async call stacks implementation. |
- virtual void asyncTaskScheduled(const String16& taskName, void* task, bool recurring) = 0; |
- virtual void asyncTaskCanceled(void* task) = 0; |
- virtual void asyncTaskStarted(void* task) = 0; |
- virtual void asyncTaskFinished(void* task) = 0; |
- virtual void allAsyncTasksCanceled() = 0; |
}; |
} // namespace blink |