| 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, Maybe<bool> throwOnSideEffect, | 96 Maybe<bool> generatePreview, |
| 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 std::unique_ptr<V8Regex> m_blackboxPattern; | 202 std::unique_ptr<V8Regex> m_blackboxPattern; |
| 203 protocol::HashMap<String16, std::vector<std::pair<int, int>>> | 203 protocol::HashMap<String16, std::vector<std::pair<int, int>>> |
| 204 m_blackboxedPositions; | 204 m_blackboxedPositions; |
| 205 | 205 |
| 206 DISALLOW_COPY_AND_ASSIGN(V8DebuggerAgentImpl); | 206 DISALLOW_COPY_AND_ASSIGN(V8DebuggerAgentImpl); |
| 207 }; | 207 }; |
| 208 | 208 |
| 209 } // namespace v8_inspector | 209 } // namespace v8_inspector |
| 210 | 210 |
| 211 #endif // V8_INSPECTOR_V8DEBUGGERAGENTIMPL_H_ | 211 #endif // V8_INSPECTOR_V8DEBUGGERAGENTIMPL_H_ |
| OLD | NEW |