| Index: third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js | 
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js b/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js | 
| index b99dda493a43e133788a2227bf0b1eedfd7d9a44..61372b6fdafa071880eb015780194aeefd3a403a 100644 | 
| --- a/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js | 
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js | 
| @@ -242,11 +242,12 @@ WebInspector.SourcesPanel.prototype = { | 
| } | 
|  | 
| /** | 
| -         * @param {!WebInspector.UILocation} uiLocation | 
| +         * @param {!WebInspector.LiveLocation} liveLocation | 
| * @this {WebInspector.SourcesPanel} | 
| */ | 
| -        function didGetUILocation(uiLocation) | 
| +        function didGetUILocation(liveLocation) | 
| { | 
| +            var uiLocation = liveLocation.uiLocation; | 
| var breakpoint = WebInspector.breakpointManager.findBreakpointOnLine(uiLocation.uiSourceCode, uiLocation.lineNumber); | 
| if (!breakpoint) | 
| return; | 
| @@ -388,10 +389,11 @@ WebInspector.SourcesPanel.prototype = { | 
| }, | 
|  | 
| /** | 
| -     * @param {!WebInspector.UILocation} uiLocation | 
| +     * @param {!WebInspector.LiveLocation} liveLocation | 
| */ | 
| -    _executionLineChanged: function(uiLocation) | 
| +    _executionLineChanged: function(liveLocation) | 
| { | 
| +        var uiLocation = /** @type {!WebInspector.UILocation} */(liveLocation.uiLocation); | 
| this._sourcesView.clearCurrentExecutionLine(); | 
| this._sourcesView.setExecutionLocation(uiLocation); | 
| if (window.performance.now() - this._lastModificationTime < WebInspector.SourcesPanel._lastModificationTimeout) | 
|  |