| Index: third_party/WebKit/Source/devtools/front_end/timeline/TimelineFlameChart.js | 
| diff --git a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineFlameChart.js b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineFlameChart.js | 
| index 383d63bdf28a470fca4443e86e5f74ecee57691a..2651ec7fcc7eaaf86df102d7821f9b0c3ee3c57c 100644 | 
| --- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineFlameChart.js | 
| +++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineFlameChart.js | 
| @@ -345,8 +345,6 @@ WebInspector.TimelineFlameChartDataProvider.prototype = { | 
| /** @type {!Array.<!WebInspector.TimelineFlameChartMarker>} */ | 
| this._markers = []; | 
| this._asyncColorByCategory = {}; | 
| -        /** @type {!Map<string, boolean>} */ | 
| -        this._blackboxingURLCache = new Map(); | 
| }, | 
|  | 
| /** | 
| @@ -471,11 +469,7 @@ WebInspector.TimelineFlameChartDataProvider.prototype = { | 
| */ | 
| _isBlackboxedURL: function(url) | 
| { | 
| -        if (this._blackboxingURLCache.has(url)) | 
| -            return /** @type {boolean} */ (this._blackboxingURLCache.get(url)); | 
| -        var result = WebInspector.BlackboxSupport.isBlackboxedURL(url); | 
| -        this._blackboxingURLCache.set(url, result); | 
| -        return result; | 
| +        return WebInspector.blackboxManager.isBlackboxedURL(url); | 
| }, | 
|  | 
| /** | 
| @@ -1255,7 +1249,7 @@ WebInspector.TimelineFlameChartView = function(delegate, timelineModel, frameMod | 
| this._model.addEventListener(WebInspector.TimelineModel.Events.RecordingStarted, this._onRecordingStarted, this); | 
| this._mainView.addEventListener(WebInspector.FlameChart.Events.EntrySelected, this._onMainEntrySelected, this); | 
| this._networkView.addEventListener(WebInspector.FlameChart.Events.EntrySelected, this._onNetworkEntrySelected, this); | 
| -    WebInspector.BlackboxSupport.addChangeListener(this.refreshRecords, this); | 
| +    WebInspector.blackboxManager.addChangeListener(this.refreshRecords, this); | 
| } | 
|  | 
| WebInspector.TimelineFlameChartView.prototype = { | 
| @@ -1267,7 +1261,7 @@ WebInspector.TimelineFlameChartView.prototype = { | 
| this._model.removeEventListener(WebInspector.TimelineModel.Events.RecordingStarted, this._onRecordingStarted, this); | 
| this._mainView.removeEventListener(WebInspector.FlameChart.Events.EntrySelected, this._onMainEntrySelected, this); | 
| this._networkView.removeEventListener(WebInspector.FlameChart.Events.EntrySelected, this._onNetworkEntrySelected, this); | 
| -        WebInspector.BlackboxSupport.removeChangeListener(this.refreshRecords, this); | 
| +        WebInspector.blackboxManager.removeChangeListener(this.refreshRecords, this); | 
| }, | 
|  | 
| /** | 
|  |