| 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/Dispatcher.h" | 9 #include "platform/inspector_protocol/Dispatcher.h" |
| 10 #include "platform/inspector_protocol/Frontend.h" | 10 #include "platform/inspector_protocol/Frontend.h" |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 OwnPtr<protocol::Array<protocol::Debugger::Location>>* locations) overri
de; | 75 OwnPtr<protocol::Array<protocol::Debugger::Location>>* locations) overri
de; |
| 76 void setBreakpoint(ErrorString*, | 76 void setBreakpoint(ErrorString*, |
| 77 PassOwnPtr<protocol::Debugger::Location>, | 77 PassOwnPtr<protocol::Debugger::Location>, |
| 78 const Maybe<String16>& optionalCondition, | 78 const Maybe<String16>& optionalCondition, |
| 79 String16*, | 79 String16*, |
| 80 OwnPtr<protocol::Debugger::Location>* actualLocation) override; | 80 OwnPtr<protocol::Debugger::Location>* actualLocation) override; |
| 81 void removeBreakpoint(ErrorString*, const String16& breakpointId) override; | 81 void removeBreakpoint(ErrorString*, const String16& breakpointId) override; |
| 82 void continueToLocation(ErrorString*, | 82 void continueToLocation(ErrorString*, |
| 83 PassOwnPtr<protocol::Debugger::Location>, | 83 PassOwnPtr<protocol::Debugger::Location>, |
| 84 const Maybe<bool>& interstateLocationOpt) override; | 84 const Maybe<bool>& interstateLocationOpt) override; |
| 85 void getStepInPositions(ErrorString*, | |
| 86 const String16& callFrameId, | |
| 87 Maybe<protocol::Array<protocol::Debugger::Location>>* positions) overrid
e; | |
| 88 void getBacktrace(ErrorString*, | 85 void getBacktrace(ErrorString*, |
| 89 OwnPtr<protocol::Array<protocol::Debugger::CallFrame>>*, | 86 OwnPtr<protocol::Array<protocol::Debugger::CallFrame>>*, |
| 90 Maybe<protocol::Runtime::StackTrace>*) override; | 87 Maybe<protocol::Runtime::StackTrace>*) override; |
| 91 void searchInContent(ErrorString*, | 88 void searchInContent(ErrorString*, |
| 92 const String16& scriptId, | 89 const String16& scriptId, |
| 93 const String16& query, | 90 const String16& query, |
| 94 const Maybe<bool>& optionalCaseSensitive, | 91 const Maybe<bool>& optionalCaseSensitive, |
| 95 const Maybe<bool>& optionalIsRegex, | 92 const Maybe<bool>& optionalIsRegex, |
| 96 OwnPtr<protocol::Array<protocol::Debugger::SearchMatch>>*) override; | 93 OwnPtr<protocol::Array<protocol::Debugger::SearchMatch>>*) override; |
| 97 void canSetScriptSource(ErrorString*, bool* result) override { *result = tru
e; } | 94 void canSetScriptSource(ErrorString*, bool* result) override { *result = tru
e; } |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 int m_currentAsyncOperationId; | 276 int m_currentAsyncOperationId; |
| 280 bool m_pendingTraceAsyncOperationCompleted; | 277 bool m_pendingTraceAsyncOperationCompleted; |
| 281 bool m_startingStepIntoAsync; | 278 bool m_startingStepIntoAsync; |
| 282 protocol::HashMap<String16, protocol::Vector<std::pair<int, int>>> m_blackbo
xedPositions; | 279 protocol::HashMap<String16, protocol::Vector<std::pair<int, int>>> m_blackbo
xedPositions; |
| 283 }; | 280 }; |
| 284 | 281 |
| 285 } // namespace blink | 282 } // namespace blink |
| 286 | 283 |
| 287 | 284 |
| 288 #endif // V8DebuggerAgentImpl_h | 285 #endif // V8DebuggerAgentImpl_h |
| OLD | NEW |