| 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..14aa591a1dca312578b1002cb660cd5754513634 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,11 @@ 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 = /** @type {!WebInspector.UILocation} */(liveLocation.uiLocation);
|
| var oldUILocation = this._uiLocations[location.id()] || null;
|
| this._uiLocations[location.id()] = uiLocation;
|
| this._breakpoint._replaceUILocation(oldUILocation, uiLocation);
|
|
|