| 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..62835f65bb03236adc7843a12d53da5ac6a608e6 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) | 
| { | 
| @@ -397,6 +397,15 @@ WebInspector.CSSWorkspaceBinding.LiveLocation.prototype = { | 
| this._cssModel.removeEventListener(WebInspector.CSSStyleModel.Events.StyleSheetRemoved, this._styleSheetRemoved, this); | 
| }, | 
|  | 
| +    /** | 
| +     * @override | 
| +     * @return {boolean} | 
| +     */ | 
| +    isBlackboxed: function() | 
| +    { | 
| +        return false; | 
| +    }, | 
| + | 
| __proto__: WebInspector.LiveLocation.prototype | 
| } | 
|  | 
|  |