 Chromium Code Reviews
 Chromium Code Reviews Issue 1688283002:
  [DevTools] Blackboxing in LiveLocations is supported in Linkifier  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@add-source-map-support-v3
    
  
    Issue 1688283002:
  [DevTools] Blackboxing in LiveLocations is supported in Linkifier  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@add-source-map-support-v3| Index: third_party/WebKit/Source/devtools/front_end/bindings/LiveLocation.js | 
| diff --git a/third_party/WebKit/Source/devtools/front_end/bindings/LiveLocation.js b/third_party/WebKit/Source/devtools/front_end/bindings/LiveLocation.js | 
| index 2cc65c3a03552bd8d4b060e831dea407f2b670ab..90979d2a54959aec7dd338e064c0e6002c3f585e 100644 | 
| --- a/third_party/WebKit/Source/devtools/front_end/bindings/LiveLocation.js | 
| +++ b/third_party/WebKit/Source/devtools/front_end/bindings/LiveLocation.js | 
| @@ -4,7 +4,7 @@ | 
| /** | 
| * @constructor | 
| - * @param {function(!WebInspector.UILocation):(boolean|undefined)} updateDelegate | 
| + * @param {function(!WebInspector.LiveLocation)} updateDelegate | 
| */ | 
| WebInspector.LiveLocation = function(updateDelegate) | 
| { | 
| @@ -14,11 +14,7 @@ WebInspector.LiveLocation = function(updateDelegate) | 
| WebInspector.LiveLocation.prototype = { | 
| update: function() | 
| 
dgozman
2016/02/18 02:42:50
Add isBlackboxed method here?
 
kozy
2016/02/18 02:55:44
Done.
 | 
| { | 
| - var uiLocation = this.uiLocation(); | 
| - if (!uiLocation) | 
| - return; | 
| - if (this._updateDelegate(uiLocation)) | 
| - this.dispose(); | 
| + this._updateDelegate(this); | 
| }, | 
| /** |