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

Unified Diff: chrome/browser/gpu_blacklist.cc

Issue 10834004: Correct const accessors in base/values.(h|cc) (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Reverting webdriver:Command::parameters_ to const 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
« no previous file with comments | « chrome/browser/extensions/menu_manager.cc ('k') | chrome/browser/metrics/metrics_log.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/gpu_blacklist.cc
diff --git a/chrome/browser/gpu_blacklist.cc b/chrome/browser/gpu_blacklist.cc
index 685227cfdb7545c68a7acb3bf900b30d2800ec00..84999eb5d82b07d78cd8eed2a4bbe270c20010e3 100644
--- a/chrome/browser/gpu_blacklist.cc
+++ b/chrome/browser/gpu_blacklist.cc
@@ -903,7 +903,7 @@ bool GpuBlacklist::LoadGpuBlacklist(
if (!version_->IsValid())
return false;
- ListValue* list = NULL;
+ const ListValue* list = NULL;
if (!parsed_json.GetList("entries", &list))
return false;
@@ -1118,4 +1118,3 @@ GpuBlacklist::NumericOp GpuBlacklist::StringToNumericOp(
return kBetween;
return kUnknown;
}
-
« no previous file with comments | « chrome/browser/extensions/menu_manager.cc ('k') | chrome/browser/metrics/metrics_log.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698