| Index: third_party/WebKit/Source/devtools/front_end/bindings/CSSWorkspaceBinding.js | 
| diff --git a/third_party/WebKit/Source/devtools/front_end/bindings/CSSWorkspaceBinding.js b/third_party/WebKit/Source/devtools/front_end/bindings/CSSWorkspaceBinding.js | 
| index 1502aa0ad970cb3a3196476be1cbb938ef415beb..75692e4d03a60e2e86adceb08c882999c71b4f57 100644 | 
| --- a/third_party/WebKit/Source/devtools/front_end/bindings/CSSWorkspaceBinding.js | 
| +++ b/third_party/WebKit/Source/devtools/front_end/bindings/CSSWorkspaceBinding.js | 
| @@ -100,7 +100,7 @@ WebInspector.CSSWorkspaceBinding.prototype = { | 
|  | 
| /** | 
| * @param {!WebInspector.CSSLocation} rawLocation | 
| -     * @param {function(!WebInspector.UILocation):(boolean|undefined)} updateDelegate | 
| +     * @param {function(!WebInspector.LiveLocation)} updateDelegate | 
| * @return {!WebInspector.CSSWorkspaceBinding.LiveLocation} | 
| */ | 
| createLiveLocation: function(rawLocation, updateDelegate) | 
| @@ -314,7 +314,7 @@ WebInspector.CSSWorkspaceBinding.HeaderInfo.prototype = { | 
| * @param {?WebInspector.CSSStyleSheetHeader} header | 
| * @param {!WebInspector.CSSLocation} rawLocation | 
| * @param {!WebInspector.CSSWorkspaceBinding} binding | 
| - * @param {function(!WebInspector.UILocation):(boolean|undefined)} updateDelegate | 
| + * @param {function(!WebInspector.LiveLocation)} updateDelegate | 
| */ | 
| WebInspector.CSSWorkspaceBinding.LiveLocation = function(cssModel, header, rawLocation, binding, updateDelegate) | 
| { | 
| @@ -375,7 +375,7 @@ WebInspector.CSSWorkspaceBinding.LiveLocation.prototype = { | 
| * @override | 
| * @return {?WebInspector.UILocation} | 
| */ | 
| -    uiLocation: function() | 
| +    _updateUILocation: function() | 
| { | 
| var cssLocation = this._rawLocation; | 
| if (this._header) { | 
|  |