| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8DebuggerAgentImpl_h | 5 #ifndef V8DebuggerAgentImpl_h |
| 6 #define V8DebuggerAgentImpl_h | 6 #define V8DebuggerAgentImpl_h |
| 7 | 7 |
| 8 #include "platform/inspector_protocol/Collections.h" | 8 #include "platform/inspector_protocol/Collections.h" |
| 9 #include "platform/inspector_protocol/String16.h" | 9 #include "platform/inspector_protocol/String16.h" |
| 10 #include "platform/v8_inspector/V8DebuggerImpl.h" | 10 #include "platform/v8_inspector/V8DebuggerImpl.h" |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 const String16& callFrameId, | 91 const String16& callFrameId, |
| 92 std::unique_ptr<protocol::Array<protocol::Debugger::CallFrame>>* newCall
Frames, | 92 std::unique_ptr<protocol::Array<protocol::Debugger::CallFrame>>* newCall
Frames, |
| 93 Maybe<protocol::Runtime::StackTrace>* asyncStackTrace) override; | 93 Maybe<protocol::Runtime::StackTrace>* asyncStackTrace) override; |
| 94 void getScriptSource(ErrorString*, const String16& scriptId, String16* scrip
tSource) override; | 94 void getScriptSource(ErrorString*, const String16& scriptId, String16* scrip
tSource) override; |
| 95 void getFunctionDetails(ErrorString*, | 95 void getFunctionDetails(ErrorString*, |
| 96 const String16& functionId, | 96 const String16& functionId, |
| 97 std::unique_ptr<protocol::Debugger::FunctionDetails>*) override; | 97 std::unique_ptr<protocol::Debugger::FunctionDetails>*) override; |
| 98 void getGeneratorObjectDetails(ErrorString*, | 98 void getGeneratorObjectDetails(ErrorString*, |
| 99 const String16& objectId, | 99 const String16& objectId, |
| 100 std::unique_ptr<protocol::Debugger::GeneratorObjectDetails>*) override; | 100 std::unique_ptr<protocol::Debugger::GeneratorObjectDetails>*) override; |
| 101 void getCollectionEntries(ErrorString*, | |
| 102 const String16& objectId, | |
| 103 std::unique_ptr<protocol::Array<protocol::Debugger::CollectionEntry>>*)
override; | |
| 104 void pause(ErrorString*) override; | 101 void pause(ErrorString*) override; |
| 105 void resume(ErrorString*) override; | 102 void resume(ErrorString*) override; |
| 106 void stepOver(ErrorString*) override; | 103 void stepOver(ErrorString*) override; |
| 107 void stepInto(ErrorString*) override; | 104 void stepInto(ErrorString*) override; |
| 108 void stepOut(ErrorString*) override; | 105 void stepOut(ErrorString*) override; |
| 109 void setPauseOnExceptions(ErrorString*, const String16& pauseState) override
; | 106 void setPauseOnExceptions(ErrorString*, const String16& pauseState) override
; |
| 110 void evaluateOnCallFrame(ErrorString*, | 107 void evaluateOnCallFrame(ErrorString*, |
| 111 const String16& callFrameId, | 108 const String16& callFrameId, |
| 112 const String16& expression, | 109 const String16& expression, |
| 113 const Maybe<String16>& objectGroup, | 110 const Maybe<String16>& objectGroup, |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 bool m_skipAllPauses; | 216 bool m_skipAllPauses; |
| 220 | 217 |
| 221 std::unique_ptr<V8Regex> m_blackboxPattern; | 218 std::unique_ptr<V8Regex> m_blackboxPattern; |
| 222 protocol::HashMap<String16, std::vector<std::pair<int, int>>> m_blackboxedPo
sitions; | 219 protocol::HashMap<String16, std::vector<std::pair<int, int>>> m_blackboxedPo
sitions; |
| 223 }; | 220 }; |
| 224 | 221 |
| 225 } // namespace blink | 222 } // namespace blink |
| 226 | 223 |
| 227 | 224 |
| 228 #endif // V8DebuggerAgentImpl_h | 225 #endif // V8DebuggerAgentImpl_h |
| OLD | NEW |