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/JavaScriptCallFrame.h" | 10 #include "platform/v8_inspector/JavaScriptCallFrame.h" |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 const Maybe<String16>& optionalCondition, | 64 const Maybe<String16>& optionalCondition, |
65 String16*, | 65 String16*, |
66 std::unique_ptr<protocol::Array<protocol::Debugger::Location>>* location
s) override; | 66 std::unique_ptr<protocol::Array<protocol::Debugger::Location>>* location
s) override; |
67 void setBreakpoint(ErrorString*, | 67 void setBreakpoint(ErrorString*, |
68 std::unique_ptr<protocol::Debugger::Location>, | 68 std::unique_ptr<protocol::Debugger::Location>, |
69 const Maybe<String16>& optionalCondition, | 69 const Maybe<String16>& optionalCondition, |
70 String16*, | 70 String16*, |
71 std::unique_ptr<protocol::Debugger::Location>* actualLocation) override; | 71 std::unique_ptr<protocol::Debugger::Location>* actualLocation) override; |
72 void removeBreakpoint(ErrorString*, const String16& breakpointId) override; | 72 void removeBreakpoint(ErrorString*, const String16& breakpointId) override; |
73 void continueToLocation(ErrorString*, | 73 void continueToLocation(ErrorString*, |
74 std::unique_ptr<protocol::Debugger::Location>, | 74 std::unique_ptr<protocol::Debugger::Location>) override; |
75 const Maybe<bool>& interstateLocationOpt) override; | |
76 void getBacktrace(ErrorString*, | 75 void getBacktrace(ErrorString*, |
77 std::unique_ptr<protocol::Array<protocol::Debugger::CallFrame>>*, | 76 std::unique_ptr<protocol::Array<protocol::Debugger::CallFrame>>*, |
78 Maybe<protocol::Runtime::StackTrace>*) override; | 77 Maybe<protocol::Runtime::StackTrace>*) override; |
79 void searchInContent(ErrorString*, | 78 void searchInContent(ErrorString*, |
80 const String16& scriptId, | 79 const String16& scriptId, |
81 const String16& query, | 80 const String16& query, |
82 const Maybe<bool>& optionalCaseSensitive, | 81 const Maybe<bool>& optionalCaseSensitive, |
83 const Maybe<bool>& optionalIsRegex, | 82 const Maybe<bool>& optionalIsRegex, |
84 std::unique_ptr<protocol::Array<protocol::Debugger::SearchMatch>>*) over
ride; | 83 std::unique_ptr<protocol::Array<protocol::Debugger::SearchMatch>>*) over
ride; |
85 void canSetScriptSource(ErrorString*, bool* result) override { *result = tru
e; } | 84 void canSetScriptSource(ErrorString*, bool* result) override { *result = tru
e; } |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 bool m_skipAllPauses; | 213 bool m_skipAllPauses; |
215 | 214 |
216 std::unique_ptr<V8Regex> m_blackboxPattern; | 215 std::unique_ptr<V8Regex> m_blackboxPattern; |
217 protocol::HashMap<String16, std::vector<std::pair<int, int>>> m_blackboxedPo
sitions; | 216 protocol::HashMap<String16, std::vector<std::pair<int, int>>> m_blackboxedPo
sitions; |
218 }; | 217 }; |
219 | 218 |
220 } // namespace blink | 219 } // namespace blink |
221 | 220 |
222 | 221 |
223 #endif // V8DebuggerAgentImpl_h | 222 #endif // V8DebuggerAgentImpl_h |
OLD | NEW |