Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(758)

Unified Diff: third_party/WebKit/Source/devtools/front_end/profiler/HeapProfilerPanel.js

Issue 2657893002: DevTools: temporarily revert Timeline->Performance rename. (Closed)
Patch Set: Introduce progress monitor Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/profiler/HeapProfilerPanel.js
diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/HeapProfilerPanel.js b/third_party/WebKit/Source/devtools/front_end/profiler/HeapProfilerPanel.js
index 49c7d6612f05625ea34d0e9126840d24a7b63d41..0be712543c1fb56953fc1cc693fb5dae58218eda 100644
--- a/third_party/WebKit/Source/devtools/front_end/profiler/HeapProfilerPanel.js
+++ b/third_party/WebKit/Source/devtools/front_end/profiler/HeapProfilerPanel.js
@@ -11,7 +11,10 @@ Profiler.HeapProfilerPanel = class extends Profiler.ProfilesPanel {
var registry = Profiler.ProfileTypeRegistry.instance;
super(
'heap_profiler',
- [registry.heapSnapshotProfileType, registry.samplingHeapProfileType, registry.trackingHeapSnapshotProfileType],
+ [
+ registry.cpuProfileType, registry.heapSnapshotProfileType, registry.samplingHeapProfileType,
+ registry.trackingHeapSnapshotProfileType
+ ],
'profiler.heap-toggle-recording');
}

Powered by Google App Engine
This is Rietveld 408576698