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

Unified Diff: tools/page_cycler/database/insert-transactions/index.html

Issue 148093016: [Telemetry] Clean up some page cycler cruft now that idb has moved out. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Remove database page cycler too Created 6 years, 10 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 | « tools/page_cycler/database/head.js ('k') | tools/page_cycler/database/insert-transactions/start.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/page_cycler/database/insert-transactions/index.html
diff --git a/tools/page_cycler/database/insert-transactions/index.html b/tools/page_cycler/database/insert-transactions/index.html
deleted file mode 100644
index f17b977ffe6197372af07423d63abc8682c29168..0000000000000000000000000000000000000000
--- a/tools/page_cycler/database/insert-transactions/index.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<!DOCTYPE HTML>
-<html>
-<title>Insert transactions</title>
-<script src="../head.js"></script>
-<script src="../common.js"></script>
-<script>
-var randomString = getRandomString();
-var idCounter = 0;
-
-function transactionCallback(tx) {
- tx.executeSql('INSERT INTO Test VALUES (?, ?)',
- [idCounter++, randomString],
- function(tx, data) {}, function(tx, error) {});
-}
-</script>
-
-<body>
-<script>
- runPerformanceTest({
- dbName: "InsertTransactions",
- readOnly: false,
- insertRowsAtSetup: false,
- transactionCallback: transactionCallback,
- customRunTransactions: null
- });
-</script>
-</body>
-</html>
« no previous file with comments | « tools/page_cycler/database/head.js ('k') | tools/page_cycler/database/insert-transactions/start.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698