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

Unified Diff: chrome/browser/gpu_blacklist.cc

Issue 9960077: Modify the base::JSONReader interface to take a set of options rather than a boolean flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments Created 8 years, 8 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/gpu_blacklist.cc
diff --git a/chrome/browser/gpu_blacklist.cc b/chrome/browser/gpu_blacklist.cc
index 79c41b9328796dc11b8d90c3d6f624d5bd829154..24bb9da91bf088063b813534bc33af9fda6d6083 100644
--- a/chrome/browser/gpu_blacklist.cc
+++ b/chrome/browser/gpu_blacklist.cc
@@ -769,7 +769,7 @@ bool GpuBlacklist::LoadGpuBlacklist(
DCHECK(browser_version_.get() != NULL);
scoped_ptr<Value> root;
- root.reset(base::JSONReader::Read(json_context, false));
+ root.reset(base::JSONReader::Read(json_context));
if (root.get() == NULL || !root->IsType(Value::TYPE_DICTIONARY))
return false;

Powered by Google App Engine
This is Rietveld 408576698