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

Unified Diff: LayoutTests/inspector-protocol/cpu-profiler/record-cpu-profile.html

Issue 23609064: Make "three snapshot technique" work on heap snapshots loaded from files (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 3 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
« no previous file with comments | « no previous file | LayoutTests/inspector/profiler/cpu-profiler-save-load.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/inspector-protocol/cpu-profiler/record-cpu-profile.html
diff --git a/LayoutTests/inspector-protocol/cpu-profiler/record-cpu-profile.html b/LayoutTests/inspector-protocol/cpu-profiler/record-cpu-profile.html
index 6f97a3c79f678703bc9ab57bfd49f02162033afe..f9d9c9e0493ca9df91b124ad3f00f1c848d699ca 100644
--- a/LayoutTests/inspector-protocol/cpu-profiler/record-cpu-profile.html
+++ b/LayoutTests/inspector-protocol/cpu-profiler/record-cpu-profile.html
@@ -14,14 +14,14 @@ function test()
{
if (!InspectorTest.expectedSuccess("startFrontendProfile", messageObject))
return;
- InspectorTest.sendCommand("Runtime.evaluate", {expression: "console.profile('org.webkit.profiles.user-initiated.1');"}, didStartConsoleProfile);
+ InspectorTest.sendCommand("Runtime.evaluate", {expression: "console.profile('Profile 1');"}, didStartConsoleProfile);
}
function didStartConsoleProfile(messageObject)
{
if (!InspectorTest.expectedSuccess("startConsoleProfile", messageObject))
return;
- InspectorTest.sendCommand("Runtime.evaluate", {expression: "console.profileEnd('org.webkit.profiles.user-initiated.1');"}, didStopConsoleProfile);
+ InspectorTest.sendCommand("Runtime.evaluate", {expression: "console.profileEnd('Profile 1');"}, didStopConsoleProfile);
}
function didStopConsoleProfile(messageObject)
« no previous file with comments | « no previous file | LayoutTests/inspector/profiler/cpu-profiler-save-load.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698