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

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

Issue 1929803002: DevTools: Update profiler strings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/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()

Powered by Google App Engine
This is Rietveld 408576698