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

Unified Diff: chrome/test/data/webui/history_browsertest.js

Issue 11886104: History: Add range navigation control for grouped visits (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Last edits Created 7 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 | « chrome/browser/ui/webui/history_ui.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/webui/history_browsertest.js
diff --git a/chrome/test/data/webui/history_browsertest.js b/chrome/test/data/webui/history_browsertest.js
index 5795fab375a629a9833eb84f110b9596ead1c747..4455ccefacb77abf0688fd734ca4f9d2fa85f907 100644
--- a/chrome/test/data/webui/history_browsertest.js
+++ b/chrome/test/data/webui/history_browsertest.js
@@ -140,9 +140,10 @@ HistoryWebUITest.prototype = {
*/
queryHistoryStub_: function(args) {
var searchText = args[0];
- var range = args[1]
- var cursor = args[2];
- var maxCount = args[3];
+ var offset = args[1];
+ var range = args[2];
+ var cursor = args[3];
+ var maxCount = args[4];
var resultCount = Math.min(maxCount, this.fakeHistory_.length - cursor);
var results = this.fakeHistory_.slice(cursor, cursor + resultCount);
« no previous file with comments | « chrome/browser/ui/webui/history_ui.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698