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

Unified Diff: tools/telemetry/unittest_data/interaction_enabled_page.html

Issue 1007583002: [Telemetry] Remove is_respsonsive flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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: tools/telemetry/unittest_data/interaction_enabled_page.html
diff --git a/tools/telemetry/unittest_data/interaction_enabled_page.html b/tools/telemetry/unittest_data/interaction_enabled_page.html
index bdce85abd935f4fff27209b5ff962b0f7db819b1..59af4e5f4540afac33f4ffe905904f10169ac968 100644
--- a/tools/telemetry/unittest_data/interaction_enabled_page.html
+++ b/tools/telemetry/unittest_data/interaction_enabled_page.html
@@ -61,15 +61,15 @@
}
}
function makeJank() {
- console.time('Interaction.JankThreadJSRun/is_responsive');
+ console.time('Interaction.JankThreadJSRun');
waitMs(jankMs);
- console.timeEnd('Interaction.JankThreadJSRun/is_responsive');
+ console.timeEnd('Interaction.JankThreadJSRun');
window.jankScriptDone = true;
}
function makeSlow() {
- console.time('Interaction.SlowThreadJsRun/is_fast');
+ console.time('Interaction.SlowThreadJsRun');
waitMs(slowMs);
- console.timeEnd('Interaction.SlowThreadJsRun/is_fast');
+ console.timeEnd('Interaction.SlowThreadJsRun');
window.slowScriptDone = true;
}
</script>

Powered by Google App Engine
This is Rietveld 408576698