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

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

Issue 10837044: Correct const accessors in base/values.(h|cc), Part II (ListValue) (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 5 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.cc
diff --git a/chrome/browser/ui/webui/history_ui.cc b/chrome/browser/ui/webui/history_ui.cc
index da8703ffa39e9a219e2fd0ba226ac04b2a259935..31341ef3b83e545b9a9b5f1453cc6984cc5434d0 100644
--- a/chrome/browser/ui/webui/history_ui.cc
+++ b/chrome/browser/ui/webui/history_ui.cc
@@ -376,7 +376,7 @@ void BrowsingHistoryHandler::ExtractSearchHistoryArguments(
int* month,
string16* query) {
*month = 0;
- Value* list_member;
+ const Value* list_member;
// Get search string.
if (args->Get(0, &list_member) &&

Powered by Google App Engine
This is Rietveld 408576698