Index: third_party/WebKit/Source/devtools/front_end/profiler/HeapProfileView.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/HeapProfileView.js b/third_party/WebKit/Source/devtools/front_end/profiler/HeapProfileView.js |
index 1e446c91d2a57fa56ab162020fb0c4361ea9bdb3..22a8f7fa251422a3733a815b7c01bdbeb66d9b33 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/profiler/HeapProfileView.js |
+++ b/third_party/WebKit/Source/devtools/front_end/profiler/HeapProfileView.js |
@@ -44,7 +44,7 @@ WebInspector.HeapProfileView.prototype = { |
*/ |
WebInspector.SamplingHeapProfileType = function() |
{ |
- WebInspector.ProfileType.call(this, WebInspector.SamplingHeapProfileType.TypeId, WebInspector.UIString("Collect JavaScript Heap Profile")); |
+ WebInspector.ProfileType.call(this, WebInspector.SamplingHeapProfileType.TypeId, WebInspector.UIString("Record Allocation Profile")); |
this._recording = false; |
WebInspector.SamplingHeapProfileType.instance = this; |
} |
@@ -91,12 +91,12 @@ WebInspector.SamplingHeapProfileType.prototype = { |
get treeItemTitle() |
{ |
- return WebInspector.UIString("HEAP PROFILES"); |
+ return WebInspector.UIString("ALLOCATION PROFILES"); |
}, |
get description() |
{ |
- return WebInspector.UIString("Heap profiles show where the most memory allocations took place in JavaScript functions."); |
+ return WebInspector.UIString("Allocation profiles show memory allocations from your JavaScript functions."); |
}, |
startRecordingProfile: function() |