| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 Response pause() override; | 86 Response pause() override; |
| 87 Response resume() override; | 87 Response resume() override; |
| 88 Response stepOver() override; | 88 Response stepOver() override; |
| 89 Response stepInto() override; | 89 Response stepInto() override; |
| 90 Response stepOut() override; | 90 Response stepOut() override; |
| 91 Response setPauseOnExceptions(const String16& pauseState) override; | 91 Response setPauseOnExceptions(const String16& pauseState) override; |
| 92 Response evaluateOnCallFrame( | 92 Response evaluateOnCallFrame( |
| 93 const String16& callFrameId, const String16& expression, | 93 const String16& callFrameId, const String16& expression, |
| 94 Maybe<String16> objectGroup, Maybe<bool> includeCommandLineAPI, | 94 Maybe<String16> objectGroup, Maybe<bool> includeCommandLineAPI, |
| 95 Maybe<bool> silent, Maybe<bool> returnByValue, | 95 Maybe<bool> silent, Maybe<bool> returnByValue, |
| 96 Maybe<bool> generatePreview, | 96 Maybe<bool> generatePreview, Maybe<bool> throwOnSideEffect, |
| 97 std::unique_ptr<protocol::Runtime::RemoteObject>* result, | 97 std::unique_ptr<protocol::Runtime::RemoteObject>* result, |
| 98 Maybe<protocol::Runtime::ExceptionDetails>*) override; | 98 Maybe<protocol::Runtime::ExceptionDetails>*) override; |
| 99 Response setVariableValue( | 99 Response setVariableValue( |
| 100 int scopeNumber, const String16& variableName, | 100 int scopeNumber, const String16& variableName, |
| 101 std::unique_ptr<protocol::Runtime::CallArgument> newValue, | 101 std::unique_ptr<protocol::Runtime::CallArgument> newValue, |
| 102 const String16& callFrame) override; | 102 const String16& callFrame) override; |
| 103 Response setAsyncCallStackDepth(int depth) override; | 103 Response setAsyncCallStackDepth(int depth) override; |
| 104 Response setBlackboxPatterns( | 104 Response setBlackboxPatterns( |
| 105 std::unique_ptr<protocol::Array<String16>> patterns) override; | 105 std::unique_ptr<protocol::Array<String16>> patterns) override; |
| 106 Response setBlackboxedRanges( | 106 Response setBlackboxedRanges( |
| (...skipping 103 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 |