| Index: third_party/WebKit/Source/devtools/front_end/sources/JavaScriptBreakpointsSidebarPane.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptBreakpointsSidebarPane.js b/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptBreakpointsSidebarPane.js
|
| index acee9f857a2a89ddf6f93eb6cd5a15790610bf3f..106436af7abb3d1f61af0057d63d80064adab94d 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptBreakpointsSidebarPane.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptBreakpointsSidebarPane.js
|
| @@ -243,7 +243,7 @@ WebInspector.JavaScriptBreakpointsSidebarPane.prototype = {
|
|
|
| _compareBreakpoints: function(b1, b2)
|
| {
|
| - return this._compare(b1.uiSourceCode.originURL(), b2.uiSourceCode.originURL()) || this._compare(b1.lineNumber, b2.lineNumber);
|
| + return this._compare(b1.uiSourceCode.url(), b2.uiSourceCode.url()) || this._compare(b1.lineNumber, b2.lineNumber);
|
| },
|
|
|
| reset: function()
|
|
|