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

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

Issue 2728563002: [inspector] added type of break location into getPossibleBreakpoints output (Closed)
Patch Set: added DCHECK 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
« 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
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, Maybe<bool> restrictToFunction, 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::BreakLocation>>*
71 override; 71 locations) 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(
80 const String16& callFrameId, 80 const String16& callFrameId,
81 std::unique_ptr<protocol::Array<protocol::Debugger::CallFrame>>* 81 std::unique_ptr<protocol::Array<protocol::Debugger::CallFrame>>*
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 m_blackboxedPositions; 217 m_blackboxedPositions;
218 218
219 std::unique_ptr<ScheduleStepIntoAsyncCallback> m_stepIntoAsyncCallback; 219 std::unique_ptr<ScheduleStepIntoAsyncCallback> m_stepIntoAsyncCallback;
220 220
221 DISALLOW_COPY_AND_ASSIGN(V8DebuggerAgentImpl); 221 DISALLOW_COPY_AND_ASSIGN(V8DebuggerAgentImpl);
222 }; 222 };
223 223
224 } // namespace v8_inspector 224 } // namespace v8_inspector
225 225
226 #endif // V8_INSPECTOR_V8DEBUGGERAGENTIMPL_H_ 226 #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