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

Unified Diff: Source/devtools/blink/chromeServerProfile/Default/Cache/f_00005e

Issue 242263007: Add <label> to items in Event Listener Breakpoint of Chrome Dev Tools Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Created 6 years, 8 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
Index: Source/devtools/blink/chromeServerProfile/Default/Cache/f_00005e
diff --git a/Source/devtools/front_end/BreakpointManager.js b/Source/devtools/blink/chromeServerProfile/Default/Cache/f_00005e
similarity index 99%
copy from Source/devtools/front_end/BreakpointManager.js
copy to Source/devtools/blink/chromeServerProfile/Default/Cache/f_00005e
index 4424e35467b0a606888a4fd0513130bdd74b65db..d7ea3665fcde8d47afafb960bd371278e6c5df01 100644
--- a/Source/devtools/front_end/BreakpointManager.js
+++ b/Source/devtools/blink/chromeServerProfile/Default/Cache/f_00005e
@@ -287,7 +287,7 @@ WebInspector.BreakpointManager.prototype = {
var columnNumber = parseInt(columnNumbers[j], 10);
for (var k = 0; k < columnBreakpoints.length; ++k) {
var breakpoint = columnBreakpoints[k];
- var uiLocation = uiSourceCode.uiLocation(lineNumber, columnNumber);
+ var uiLocation = new WebInspector.UILocation(uiSourceCode, lineNumber, columnNumber);
result.push({breakpoint: breakpoint, uiLocation: uiLocation});
}
}
@@ -664,7 +664,7 @@ WebInspector.BreakpointManager.Breakpoint.prototype = {
var uiSourceCode = this._breakpointManager._workspace.uiSourceCode(this._projectId, this._path);
if (!uiSourceCode)
return;
- var uiLocation = uiSourceCode.uiLocation(this._lineNumber, this._columnNumber);
+ var uiLocation = new WebInspector.UILocation(uiSourceCode, this._lineNumber, this._columnNumber);
this._uiLocations[""] = uiLocation;
this._breakpointManager._uiLocationAdded(this, uiLocation);
}

Powered by Google App Engine
This is Rietveld 408576698