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

Unified Diff: chrome/browser/ui/webui/history_ui.h

Issue 11886104: History: Add range navigation control for grouped visits (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix minor bug Created 7 years, 11 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: chrome/browser/ui/webui/history_ui.h
diff --git a/chrome/browser/ui/webui/history_ui.h b/chrome/browser/ui/webui/history_ui.h
index 28da053c6fb4157db642b14fe268064fcb6c9e24..c4b5189f59b77e3494daaa928b01c59a8004ff64 100644
--- a/chrome/browser/ui/webui/history_ui.h
+++ b/chrome/browser/ui/webui/history_ui.h
@@ -89,11 +89,11 @@ class BrowsingHistoryHandler : public content::WebUIMessageHandler,
bool ExtractIntegerValueAtIndex(
const base::ListValue* value, int index, int* out_int);
- // Set the query options for a month-wide query.
- void SetQueryTimeInMonths(history::QueryOptions* options);
+ // Sets the query options for a 7 day query, |offset| weeks ago.
+ void SetQueryTimeInWeeks(int offset, history::QueryOptions* options);
- // Set the query options for a day-wide query.
- void SetQueryTimeInWeeks(history::QueryOptions* options);
+ // Sets the query options for a monthly query, |offset| months ago.
+ void SetQueryTimeInMonths(int offset, history::QueryOptions* options);
content::NotificationRegistrar registrar_;

Powered by Google App Engine
This is Rietveld 408576698