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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 | 193 |
194 using BreakReason = | 194 using BreakReason = |
195 std::pair<String16, std::unique_ptr<protocol::DictionaryValue>>; | 195 std::pair<String16, std::unique_ptr<protocol::DictionaryValue>>; |
196 std::vector<BreakReason> m_breakReason; | 196 std::vector<BreakReason> m_breakReason; |
197 | 197 |
198 void pushBreakDetails( | 198 void pushBreakDetails( |
199 const String16& breakReason, | 199 const String16& breakReason, |
200 std::unique_ptr<protocol::DictionaryValue> breakAuxData); | 200 std::unique_ptr<protocol::DictionaryValue> breakAuxData); |
201 void popBreakDetails(); | 201 void popBreakDetails(); |
202 | 202 |
203 bool m_javaScriptPauseScheduled; | |
204 bool m_skipAllPauses = false; | 203 bool m_skipAllPauses = false; |
205 | 204 |
206 std::unique_ptr<V8Regex> m_blackboxPattern; | 205 std::unique_ptr<V8Regex> m_blackboxPattern; |
207 protocol::HashMap<String16, std::vector<std::pair<int, int>>> | 206 protocol::HashMap<String16, std::vector<std::pair<int, int>>> |
208 m_blackboxedPositions; | 207 m_blackboxedPositions; |
209 | 208 |
210 std::unique_ptr<ScheduleStepIntoAsyncCallback> m_stepIntoAsyncCallback; | 209 std::unique_ptr<ScheduleStepIntoAsyncCallback> m_stepIntoAsyncCallback; |
211 | 210 |
212 DISALLOW_COPY_AND_ASSIGN(V8DebuggerAgentImpl); | 211 DISALLOW_COPY_AND_ASSIGN(V8DebuggerAgentImpl); |
213 }; | 212 }; |
214 | 213 |
215 } // namespace v8_inspector | 214 } // namespace v8_inspector |
216 | 215 |
217 #endif // V8_INSPECTOR_V8DEBUGGERAGENTIMPL_H_ | 216 #endif // V8_INSPECTOR_V8DEBUGGERAGENTIMPL_H_ |
OLD | NEW |