| Index: third_party/WebKit/Source/devtools/front_end/bindings/BreakpointManager.js | 
| diff --git a/third_party/WebKit/Source/devtools/front_end/bindings/BreakpointManager.js b/third_party/WebKit/Source/devtools/front_end/bindings/BreakpointManager.js | 
| index 4e665e068d4991cf3833ec62334061c83ca05c00..53446c5b79a06f26c03d2359aaeec95fe3b458e7 100644 | 
| --- a/third_party/WebKit/Source/devtools/front_end/bindings/BreakpointManager.js | 
| +++ b/third_party/WebKit/Source/devtools/front_end/bindings/BreakpointManager.js | 
| @@ -919,10 +919,13 @@ WebInspector.BreakpointManager.TargetBreakpoint.prototype = { | 
|  | 
| /** | 
| * @param {!WebInspector.DebuggerModel.Location} location | 
| -     * @param {!WebInspector.UILocation} uiLocation | 
| +     * @param {!WebInspector.LiveLocation} liveLocation | 
| */ | 
| -    _locationUpdated: function(location, uiLocation) | 
| +    _locationUpdated: function(location, liveLocation) | 
| { | 
| +        var uiLocation = liveLocation.uiLocation(); | 
| +        if (!uiLocation) | 
| +            return; | 
| var oldUILocation = this._uiLocations[location.id()] || null; | 
| this._uiLocations[location.id()] = uiLocation; | 
| this._breakpoint._replaceUILocation(oldUILocation, uiLocation); | 
|  |