Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Side by Side Diff: src/inspector/v8-debugger-agent-impl.h

Issue 2743163002: [inspector] use same schedulePauseOnNextStatement strategy for Debugger.pause (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « no previous file | src/inspector/v8-debugger-agent-impl.cc » ('j') | src/inspector/v8-debugger-agent-impl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698