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

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: Replies to comments. 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 a1c96ed43fe1279c9bd55cf4ca9037e0cab93bfa..975cb7acb30c5560e2a3b1289372025e756f0072 100644
--- a/chrome/browser/ui/webui/history_ui.h
+++ b/chrome/browser/ui/webui/history_ui.h
@@ -92,11 +92,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);
+ // Set the query options for a week-wide query, |offset| weeks ago.
+ void SetQueryTimeInWeeks(int offset, history::QueryOptions* options);
- // Set the query options for a week-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