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

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

Issue 2465553003: [inspector] added Debugger.getPossibleBreakpoints method (Closed)
Patch Set: addressed comments Created 4 years, 1 month 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
« no previous file with comments | « src/inspector/js_protocol.json ('k') | src/inspector/v8-debugger-agent-impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 Maybe<String16> optionalCondition, String16*, 64 Maybe<String16> optionalCondition, String16*,
65 std::unique_ptr<protocol::Debugger::Location>* actualLocation) override; 65 std::unique_ptr<protocol::Debugger::Location>* actualLocation) override;
66 Response removeBreakpoint(const String16& breakpointId) override; 66 Response removeBreakpoint(const String16& breakpointId) override;
67 Response continueToLocation( 67 Response continueToLocation(
68 std::unique_ptr<protocol::Debugger::Location>) override; 68 std::unique_ptr<protocol::Debugger::Location>) override;
69 Response searchInContent( 69 Response searchInContent(
70 const String16& scriptId, const String16& query, 70 const String16& scriptId, const String16& query,
71 Maybe<bool> optionalCaseSensitive, Maybe<bool> optionalIsRegex, 71 Maybe<bool> optionalCaseSensitive, Maybe<bool> optionalIsRegex,
72 std::unique_ptr<protocol::Array<protocol::Debugger::SearchMatch>>*) 72 std::unique_ptr<protocol::Array<protocol::Debugger::SearchMatch>>*)
73 override; 73 override;
74 Response getPossibleBreakpoints(
75 std::unique_ptr<protocol::Debugger::Location> start,
76 Maybe<protocol::Debugger::Location> end,
77 std::unique_ptr<protocol::Array<protocol::Debugger::Location>>* locations)
78 override;
74 Response setScriptSource( 79 Response setScriptSource(
75 const String16& inScriptId, const String16& inScriptSource, 80 const String16& inScriptId, const String16& inScriptSource,
76 Maybe<bool> dryRun, 81 Maybe<bool> dryRun,
77 Maybe<protocol::Array<protocol::Debugger::CallFrame>>* optOutCallFrames, 82 Maybe<protocol::Array<protocol::Debugger::CallFrame>>* optOutCallFrames,
78 Maybe<bool>* optOutStackChanged, 83 Maybe<bool>* optOutStackChanged,
79 Maybe<protocol::Runtime::StackTrace>* optOutAsyncStackTrace, 84 Maybe<protocol::Runtime::StackTrace>* optOutAsyncStackTrace,
80 Maybe<protocol::Runtime::ExceptionDetails>* optOutCompileError) override; 85 Maybe<protocol::Runtime::ExceptionDetails>* optOutCompileError) override;
81 Response restartFrame( 86 Response restartFrame(
82 const String16& callFrameId, 87 const String16& callFrameId,
83 std::unique_ptr<protocol::Array<protocol::Debugger::CallFrame>>* 88 std::unique_ptr<protocol::Array<protocol::Debugger::CallFrame>>*
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 std::unique_ptr<V8Regex> m_blackboxPattern; 215 std::unique_ptr<V8Regex> m_blackboxPattern;
211 protocol::HashMap<String16, std::vector<std::pair<int, int>>> 216 protocol::HashMap<String16, std::vector<std::pair<int, int>>>
212 m_blackboxedPositions; 217 m_blackboxedPositions;
213 218
214 DISALLOW_COPY_AND_ASSIGN(V8DebuggerAgentImpl); 219 DISALLOW_COPY_AND_ASSIGN(V8DebuggerAgentImpl);
215 }; 220 };
216 221
217 } // namespace v8_inspector 222 } // namespace v8_inspector
218 223
219 #endif // V8_INSPECTOR_V8DEBUGGERAGENTIMPL_H_ 224 #endif // V8_INSPECTOR_V8DEBUGGERAGENTIMPL_H_
OLDNEW
« no previous file with comments | « src/inspector/js_protocol.json ('k') | src/inspector/v8-debugger-agent-impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698