summaryrefslogtreecommitdiffstats
path: root/WebCore/inspector/front-end/ProfileView.js
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/inspector/front-end/ProfileView.js')
-rw-r--r--WebCore/inspector/front-end/ProfileView.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/inspector/front-end/ProfileView.js b/WebCore/inspector/front-end/ProfileView.js
index 1efa0dc..817f1f5 100644
--- a/WebCore/inspector/front-end/ProfileView.js
+++ b/WebCore/inspector/front-end/ProfileView.js
@@ -83,7 +83,7 @@ WebInspector.CPUProfileView = function(profile)
var self = this;
function profileCallback(profile)
{
- self.profile = profile;
+ self.profile.head = profile.head;
self._assignParentsInProfile();
self.profileDataGridTree = self.bottomUpProfileDataGridTree;
@@ -601,7 +601,7 @@ WebInspector.CPUProfileType.prototype = {
get welcomeMessage()
{
- return WebInspector.UIString("Start CPU profiling by pressing<br>the %s button on the status bar.");
+ return WebInspector.UIString("Control CPU profiling by pressing the %s button on the status bar.");
},
setRecordingProfile: function(isProfiling)