| Index: third_party/WebKit/Source/devtools/front_end/timeline/MemoryCountersGraph.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/timeline/MemoryCountersGraph.js b/third_party/WebKit/Source/devtools/front_end/timeline/MemoryCountersGraph.js
|
| index 70dcbbb8a8fd4f0227b26e8e43d588f706765dd8..c68208bf2b7d515f7beb543c10311751d30ae288 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/timeline/MemoryCountersGraph.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/timeline/MemoryCountersGraph.js
|
| @@ -46,7 +46,7 @@ WebInspector.MemoryCountersGraph = function(delegate, model, filters)
|
| this._countersByName["jsEventListeners"] = this.createCounter(WebInspector.UIString("Listeners"), WebInspector.UIString("Listeners: %s"), "hsl(38, 90%, 43%)");
|
| this._gpuMemoryCounter = this.createCounter(WebInspector.UIString("GPU Memory"), WebInspector.UIString("GPU Memory [KB]: %s"), "hsl(300, 90%, 43%)", Number.bytesToString);
|
| this._countersByName["gpuMemoryUsedKB"] = this._gpuMemoryCounter;
|
| -}
|
| +};
|
|
|
| WebInspector.MemoryCountersGraph.prototype = {
|
| /**
|
| @@ -78,4 +78,4 @@ WebInspector.MemoryCountersGraph.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.CountersGraph.prototype
|
| -}
|
| +};
|
|
|