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

Unified Diff: src/inspector/debugger_script_externs.js

Issue 2685163006: [inspector] migrate set/remove BreakPoint to debug-interface.h (Closed)
Patch Set: added comment about inlined jsframe index 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/inspector/debugger-script.js ('k') | src/inspector/v8-debugger.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/inspector/debugger_script_externs.js
diff --git a/src/inspector/debugger_script_externs.js b/src/inspector/debugger_script_externs.js
index 6f36fb9c41ecc28234943c7f59c2f485e7196277..732e940f1315dcb0f72eb8b6c87436ecefb6bec6 100644
--- a/src/inspector/debugger_script_externs.js
+++ b/src/inspector/debugger_script_externs.js
@@ -44,41 +44,9 @@ var JavaScriptCallFrame;
*/
var Debug = {};
-Debug.clearAllBreakPoints = function() {}
-
/** @return {!Array<!Script>} */
Debug.scripts = function() {}
-/**
- * @param {number} scriptId
- * @param {number=} line
- * @param {number=} column
- * @param {string=} condition
- * @param {string=} groupId
- * @param {Debug.BreakPositionAlignment=} positionAlignment
- */
-Debug.setScriptBreakPointById = function(scriptId, line, column, condition, groupId, positionAlignment) {}
-
-/**
- * @param {number} breakId
- * @return {!Array<!SourceLocation>}
- */
-Debug.findBreakPointActualLocations = function(breakId) {}
-
-/**
- * @param {number} breakId
- * @param {boolean} remove
- * @return {!BreakPoint|undefined}
- */
-Debug.findBreakPoint = function(breakId, remove) {}
-
-/** @enum */
-const BreakPositionAlignment = {
- Statement: 0,
- BreakPosition: 1
-};
-Debug.BreakPositionAlignment = BreakPositionAlignment;
-
/** @const */
var LiveEdit = {}
@@ -104,36 +72,9 @@ Debug.LiveEdit = LiveEdit;
*/
var LiveEditErrorDetails;
-/** @typedef {{
- * breakpointId: number,
- * sourceID: number,
- * lineNumber: (number|undefined),
- * columnNumber: (number|undefined),
- * condition: (string|undefined),
- * interstatementLocation: (boolean|undefined),
- * }}
- */
-var BreakpointInfo;
-
-
-/** @interface */
-function BreakPoint() {}
-
-/** @return {!BreakPoint|undefined} */
-BreakPoint.prototype.script_break_point = function() {}
-
-/** @return {number} */
-BreakPoint.prototype.number = function() {}
-
-
/** @interface */
function ExecutionState() {}
-/**
- * @param {string} source
- */
-ExecutionState.prototype.evaluateGlobal = function(source) {}
-
/** @return {number} */
ExecutionState.prototype.frameCount = function() {}
@@ -143,13 +84,6 @@ ExecutionState.prototype.frameCount = function() {}
*/
ExecutionState.prototype.frame = function(index) {}
-/** @param {number} index */
-ExecutionState.prototype.setSelectedFrame = function(index) {}
-
-/** @return {number} */
-ExecutionState.prototype.selectedFrame = function() {}
-
-
/** @enum */
var ScopeType = { Global: 0,
Local: 1,
« no previous file with comments | « src/inspector/debugger-script.js ('k') | src/inspector/v8-debugger.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698