| 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, | 69 Maybe<protocol::Debugger::Location> end, |
| 70 Maybe<bool> ignoreNestedFunctions, |
| 70 std::unique_ptr<protocol::Array<protocol::Debugger::Location>>* locations) | 71 std::unique_ptr<protocol::Array<protocol::Debugger::Location>>* locations) |
| 71 override; | 72 override; |
| 72 Response setScriptSource( | 73 Response setScriptSource( |
| 73 const String16& inScriptId, const String16& inScriptSource, | 74 const String16& inScriptId, const String16& inScriptSource, |
| 74 Maybe<bool> dryRun, | 75 Maybe<bool> dryRun, |
| 75 Maybe<protocol::Array<protocol::Debugger::CallFrame>>* optOutCallFrames, | 76 Maybe<protocol::Array<protocol::Debugger::CallFrame>>* optOutCallFrames, |
| 76 Maybe<bool>* optOutStackChanged, | 77 Maybe<bool>* optOutStackChanged, |
| 77 Maybe<protocol::Runtime::StackTrace>* optOutAsyncStackTrace, | 78 Maybe<protocol::Runtime::StackTrace>* optOutAsyncStackTrace, |
| 78 Maybe<protocol::Runtime::ExceptionDetails>* optOutCompileError) override; | 79 Maybe<protocol::Runtime::ExceptionDetails>* optOutCompileError) override; |
| 79 Response restartFrame( | 80 Response restartFrame( |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 std::unique_ptr<V8Regex> m_blackboxPattern; | 211 std::unique_ptr<V8Regex> m_blackboxPattern; |
| 211 protocol::HashMap<String16, std::vector<std::pair<int, int>>> | 212 protocol::HashMap<String16, std::vector<std::pair<int, int>>> |
| 212 m_blackboxedPositions; | 213 m_blackboxedPositions; |
| 213 | 214 |
| 214 DISALLOW_COPY_AND_ASSIGN(V8DebuggerAgentImpl); | 215 DISALLOW_COPY_AND_ASSIGN(V8DebuggerAgentImpl); |
| 215 }; | 216 }; |
| 216 | 217 |
| 217 } // namespace v8_inspector | 218 } // namespace v8_inspector |
| 218 | 219 |
| 219 #endif // V8_INSPECTOR_V8DEBUGGERAGENTIMPL_H_ | 220 #endif // V8_INSPECTOR_V8DEBUGGERAGENTIMPL_H_ |
| OLD | NEW |