| 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 106436af7abb3d1f61af0057d63d80064adab94d..a7873ee21d1913aa96da90efa52719df94c7d47e 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptBreakpointsSidebarPane.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptBreakpointsSidebarPane.js
|
| @@ -99,7 +99,7 @@ WebInspector.JavaScriptBreakpointsSidebarPane.prototype = {
|
| this.didReceiveBreakpointLineForTest(uiLocation.uiSourceCode);
|
| }
|
|
|
| - uiLocation.uiSourceCode.requestContent(didRequestContent.bind(this));
|
| + uiLocation.uiSourceCode.requestContent().then(didRequestContent.bind(this));
|
|
|
| element._data = uiLocation;
|
| var currentElement = this.listElement.firstChild;
|
|
|