OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 the V8 project 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 V8_INSPECTOR_V8DEBUGGERAGENTIMPL_H_ | 5 #ifndef V8_INSPECTOR_V8DEBUGGERAGENTIMPL_H_ |
6 #define V8_INSPECTOR_V8DEBUGGERAGENTIMPL_H_ | 6 #define V8_INSPECTOR_V8DEBUGGERAGENTIMPL_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "src/base/macros.h" | 10 #include "src/base/macros.h" |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 Response continueToLocation( | 60 Response continueToLocation( |
61 std::unique_ptr<protocol::Debugger::Location>) override; | 61 std::unique_ptr<protocol::Debugger::Location>) override; |
62 Response searchInContent( | 62 Response searchInContent( |
63 const String16& scriptId, const String16& query, | 63 const String16& scriptId, const String16& query, |
64 Maybe<bool> optionalCaseSensitive, Maybe<bool> optionalIsRegex, | 64 Maybe<bool> optionalCaseSensitive, Maybe<bool> optionalIsRegex, |
65 std::unique_ptr<protocol::Array<protocol::Debugger::SearchMatch>>*) | 65 std::unique_ptr<protocol::Array<protocol::Debugger::SearchMatch>>*) |
66 override; | 66 override; |
67 Response getPossibleBreakpoints( | 67 Response getPossibleBreakpoints( |
68 std::unique_ptr<protocol::Debugger::Location> start, | 68 std::unique_ptr<protocol::Debugger::Location> start, |
69 Maybe<protocol::Debugger::Location> end, Maybe<bool> restrictToFunction, | 69 Maybe<protocol::Debugger::Location> end, Maybe<bool> restrictToFunction, |
70 std::unique_ptr<protocol::Array<protocol::Debugger::Location>>* locations) | 70 std::unique_ptr<protocol::Array<protocol::Debugger::BreakLocation>>* |
71 override; | 71 locations) override; |
72 Response setScriptSource( | 72 Response setScriptSource( |
73 const String16& inScriptId, const String16& inScriptSource, | 73 const String16& inScriptId, const String16& inScriptSource, |
74 Maybe<bool> dryRun, | 74 Maybe<bool> dryRun, |
75 Maybe<protocol::Array<protocol::Debugger::CallFrame>>* optOutCallFrames, | 75 Maybe<protocol::Array<protocol::Debugger::CallFrame>>* optOutCallFrames, |
76 Maybe<bool>* optOutStackChanged, | 76 Maybe<bool>* optOutStackChanged, |
77 Maybe<protocol::Runtime::StackTrace>* optOutAsyncStackTrace, | 77 Maybe<protocol::Runtime::StackTrace>* optOutAsyncStackTrace, |
78 Maybe<protocol::Runtime::ExceptionDetails>* optOutCompileError) override; | 78 Maybe<protocol::Runtime::ExceptionDetails>* optOutCompileError) override; |
79 Response restartFrame( | 79 Response restartFrame( |
80 const String16& callFrameId, | 80 const String16& callFrameId, |
81 std::unique_ptr<protocol::Array<protocol::Debugger::CallFrame>>* | 81 std::unique_ptr<protocol::Array<protocol::Debugger::CallFrame>>* |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 m_blackboxedPositions; | 217 m_blackboxedPositions; |
218 | 218 |
219 std::unique_ptr<ScheduleStepIntoAsyncCallback> m_stepIntoAsyncCallback; | 219 std::unique_ptr<ScheduleStepIntoAsyncCallback> m_stepIntoAsyncCallback; |
220 | 220 |
221 DISALLOW_COPY_AND_ASSIGN(V8DebuggerAgentImpl); | 221 DISALLOW_COPY_AND_ASSIGN(V8DebuggerAgentImpl); |
222 }; | 222 }; |
223 | 223 |
224 } // namespace v8_inspector | 224 } // namespace v8_inspector |
225 | 225 |
226 #endif // V8_INSPECTOR_V8DEBUGGERAGENTIMPL_H_ | 226 #endif // V8_INSPECTOR_V8DEBUGGERAGENTIMPL_H_ |
OLD | NEW |