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

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

Issue 2710953004: [inspector] added restrictToFunction flag for getPossibleBreakpoints (Closed)
Patch Set: addressed comments Created 3 years, 10 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
« 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 Response removeBreakpoint(const String16& breakpointId) override; 59 Response removeBreakpoint(const String16& breakpointId) override;
60 Response continueToLocation( 60 Response continueToLocation(
61 std::unique_ptr<protocol::Debugger::Location>) override; 61 std::unique_ptr<protocol::Debugger::Location>) override;
62 Response searchInContent( 62 Response searchInContent(
63 const String16& scriptId, const String16& query, 63 const String16& scriptId, const String16& query,
64 Maybe<bool> optionalCaseSensitive, Maybe<bool> optionalIsRegex, 64 Maybe<bool> optionalCaseSensitive, Maybe<bool> optionalIsRegex,
65 std::unique_ptr<protocol::Array<protocol::Debugger::SearchMatch>>*) 65 std::unique_ptr<protocol::Array<protocol::Debugger::SearchMatch>>*)
66 override; 66 override;
67 Response getPossibleBreakpoints( 67 Response getPossibleBreakpoints(
68 std::unique_ptr<protocol::Debugger::Location> start, 68 std::unique_ptr<protocol::Debugger::Location> start,
69 Maybe<protocol::Debugger::Location> end, 69 Maybe<protocol::Debugger::Location> end, Maybe<bool> restrictToFunction,
70 std::unique_ptr<protocol::Array<protocol::Debugger::Location>>* locations) 70 std::unique_ptr<protocol::Array<protocol::Debugger::Location>>* locations)
71 override; 71 override;
72 Response setScriptSource( 72 Response setScriptSource(
73 const String16& inScriptId, const String16& inScriptSource, 73 const String16& inScriptId, const String16& inScriptSource,
74 Maybe<bool> dryRun, 74 Maybe<bool> dryRun,
75 Maybe<protocol::Array<protocol::Debugger::CallFrame>>* optOutCallFrames, 75 Maybe<protocol::Array<protocol::Debugger::CallFrame>>* optOutCallFrames,
76 Maybe<bool>* optOutStackChanged, 76 Maybe<bool>* optOutStackChanged,
77 Maybe<protocol::Runtime::StackTrace>* optOutAsyncStackTrace, 77 Maybe<protocol::Runtime::StackTrace>* optOutAsyncStackTrace,
78 Maybe<protocol::Runtime::ExceptionDetails>* optOutCompileError) override; 78 Maybe<protocol::Runtime::ExceptionDetails>* optOutCompileError) override;
79 Response restartFrame( 79 Response restartFrame(
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_
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