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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 Response removeBreakpoint(const String16& breakpointId) override; | 59 Response removeBreakpoint(const String16& breakpointId) override; |
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, | 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::Location>>* locations) |
71 override; | 71 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( |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 std::unique_ptr<V8Regex> m_blackboxPattern; | 210 std::unique_ptr<V8Regex> m_blackboxPattern; |
211 protocol::HashMap<String16, std::vector<std::pair<int, int>>> | 211 protocol::HashMap<String16, std::vector<std::pair<int, int>>> |
212 m_blackboxedPositions; | 212 m_blackboxedPositions; |
213 | 213 |
214 DISALLOW_COPY_AND_ASSIGN(V8DebuggerAgentImpl); | 214 DISALLOW_COPY_AND_ASSIGN(V8DebuggerAgentImpl); |
215 }; | 215 }; |
216 | 216 |
217 } // namespace v8_inspector | 217 } // namespace v8_inspector |
218 | 218 |
219 #endif // V8_INSPECTOR_V8DEBUGGERAGENTIMPL_H_ | 219 #endif // V8_INSPECTOR_V8DEBUGGERAGENTIMPL_H_ |
OLD | NEW |