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

Side by Side Diff: tools/page_cycler/database/update-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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <html>
3 <title>Update transactions</title>
4 <script src="../head.js"></script>
5 <script src="../common.js"></script>
6 <script>
7 var randomString = getRandomString();
8 var idCounter = 0;
9
10 function transactionCallback(tx) {
11 tx.executeSql('UPDATE Test SET Foo = ? WHERE ID = ?',
12 [randomString, idCounter++],
13 function(tx, data) {}, function(tx, error) {});
14 }
15 </script>
16
17 <body>
18 <script>
19 runPerformanceTest({
20 dbName: "UpdateTransactions",
21 readOnly: false,
22 insertRowsAtSetup: true,
23 transactionCallback: transactionCallback,
24 customRunTransactions: null
25 });
26 </script>
27 </body>
28 </html>
OLDNEW
« no previous file with comments | « tools/page_cycler/database/select-transactions/start.html ('k') | tools/page_cycler/database/update-transactions/start.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698