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

Unified Diff: trunk/src/tools/perf/perf_tools/page_cycler.js

Issue 14222013: Revert 194475 "Revert 194260 "Revert 194220 "[Telemetry] Make pa..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 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: trunk/src/tools/perf/perf_tools/page_cycler.js
===================================================================
--- trunk/src/tools/perf/perf_tools/page_cycler.js (revision 194487)
+++ trunk/src/tools/perf/perf_tools/page_cycler.js (working copy)
@@ -1,60 +0,0 @@
-// Copyright (c) 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-(function() {
-// The Mozilla DHTML performance tests need to explicitly call a function to
-// trigger the next page visit, rather than directly using the onload handler.
-// To meet needs of the DHTML performance tests without forking this head.js
-// file, use a variable |__install_onload_handler| to indicate whether the
-// |__onload| handler should be added to onload event listener.
-// Install |__onload| by default if there is no pre-configuration.
-if (typeof(__install_onload_handler) == 'undefined')
- var __install_onload_handler = true;
-
-// This is the timeout used in setTimeout inside the DHTML tests. Chrome has
-// a much more accurate timer resolution than other browsers do. This results
-// in Chrome running these tests much faster than other browsers. In order to
-// compare Chrome with other browsers on DHTML performance alone, set this
-// value to ~15.
-var __test_timeout = 0;
-
-function __set_cookie(name, value) {
- document.cookie = name + "=" + value + "; path=/";
-}
-
-function __onbeforeunload() {
- // Call GC twice to cleanup JS heap before starting a new test.
- if (window.gc) {
- window.gc();
- window.gc();
- }
-
- __set_cookie("__pc_load_time", "");
-}
-
-// The function |__onload| is used by the DHTML tests.
-window.__onload = function() {
- // window.storeCreated is used by the Indexed DB tests.
- if ((!__install_onload_handler || window.storeCreated) &&
- !performance.timing.loadEventEnd)
- return;
-
- var unused = document.body.offsetHeight; // force layout
-
- __set_cookie("__pc_load_time", window.performance.now());
-};
-
-// The function |testComplete| is used by the Indexed DB tests.
-window.testComplete = __onload;
-
-// The function |__eval_later| now is only used by the DHTML tests.
-window.__eval_later = function(expression) {
- setTimeout(expression, __test_timeout);
-};
-
-if (window.parent == window) { // Ignore subframes.
- addEventListener("load", __onload);
- addEventListener("beforeunload", __onbeforeunload);
-}
-})();
« no previous file with comments | « trunk/src/tools/perf/page_sets/page_cycler/moz2.json ('k') | trunk/src/tools/perf/perf_tools/page_cycler.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698