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

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

Issue 2879923003: [inspector] added targetCallFrames for continueToLocation (Closed)
Patch Set: ac Created 3 years, 7 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/v8-debugger.cc ('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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 int lineNumber, Maybe<String16> optionalURL, 49 int lineNumber, Maybe<String16> optionalURL,
50 Maybe<String16> optionalURLRegex, Maybe<int> optionalColumnNumber, 50 Maybe<String16> optionalURLRegex, Maybe<int> optionalColumnNumber,
51 Maybe<String16> optionalCondition, String16*, 51 Maybe<String16> optionalCondition, String16*,
52 std::unique_ptr<protocol::Array<protocol::Debugger::Location>>* locations) 52 std::unique_ptr<protocol::Array<protocol::Debugger::Location>>* locations)
53 override; 53 override;
54 Response setBreakpoint( 54 Response setBreakpoint(
55 std::unique_ptr<protocol::Debugger::Location>, 55 std::unique_ptr<protocol::Debugger::Location>,
56 Maybe<String16> optionalCondition, String16*, 56 Maybe<String16> optionalCondition, String16*,
57 std::unique_ptr<protocol::Debugger::Location>* actualLocation) override; 57 std::unique_ptr<protocol::Debugger::Location>* actualLocation) override;
58 Response removeBreakpoint(const String16& breakpointId) override; 58 Response removeBreakpoint(const String16& breakpointId) override;
59 Response continueToLocation( 59 Response continueToLocation(std::unique_ptr<protocol::Debugger::Location>,
60 std::unique_ptr<protocol::Debugger::Location>) override; 60 Maybe<String16> targetCallFrames) override;
61 Response searchInContent( 61 Response searchInContent(
62 const String16& scriptId, const String16& query, 62 const String16& scriptId, const String16& query,
63 Maybe<bool> optionalCaseSensitive, Maybe<bool> optionalIsRegex, 63 Maybe<bool> optionalCaseSensitive, Maybe<bool> optionalIsRegex,
64 std::unique_ptr<protocol::Array<protocol::Debugger::SearchMatch>>*) 64 std::unique_ptr<protocol::Array<protocol::Debugger::SearchMatch>>*)
65 override; 65 override;
66 Response getPossibleBreakpoints( 66 Response getPossibleBreakpoints(
67 std::unique_ptr<protocol::Debugger::Location> start, 67 std::unique_ptr<protocol::Debugger::Location> start,
68 Maybe<protocol::Debugger::Location> end, Maybe<bool> restrictToFunction, 68 Maybe<protocol::Debugger::Location> end, Maybe<bool> restrictToFunction,
69 std::unique_ptr<protocol::Array<protocol::Debugger::BreakLocation>>* 69 std::unique_ptr<protocol::Array<protocol::Debugger::BreakLocation>>*
70 locations) override; 70 locations) override;
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 std::unique_ptr<V8Regex> m_blackboxPattern; 199 std::unique_ptr<V8Regex> m_blackboxPattern;
200 protocol::HashMap<String16, std::vector<std::pair<int, int>>> 200 protocol::HashMap<String16, std::vector<std::pair<int, int>>>
201 m_blackboxedPositions; 201 m_blackboxedPositions;
202 202
203 DISALLOW_COPY_AND_ASSIGN(V8DebuggerAgentImpl); 203 DISALLOW_COPY_AND_ASSIGN(V8DebuggerAgentImpl);
204 }; 204 };
205 205
206 } // namespace v8_inspector 206 } // namespace v8_inspector
207 207
208 #endif // V8_INSPECTOR_V8DEBUGGERAGENTIMPL_H_ 208 #endif // V8_INSPECTOR_V8DEBUGGERAGENTIMPL_H_
OLDNEW
« no previous file with comments | « src/inspector/v8-debugger.cc ('k') | src/inspector/v8-debugger-agent-impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698