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

Unified Diff: content/browser/gpu/gpu_blacklist.cc

Issue 7649006: more changes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix another typo Created 9 years, 4 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/tools/build/generate_policy_source.py ('k') | content/browser/gpu/gpu_data_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/gpu/gpu_blacklist.cc
diff --git a/content/browser/gpu/gpu_blacklist.cc b/content/browser/gpu/gpu_blacklist.cc
index 255ab4bea3f3af09811e7f1e6fc8d82367eba630..b1ca6e5831c268811af573116656585cc209eab7 100644
--- a/content/browser/gpu/gpu_blacklist.cc
+++ b/content/browser/gpu/gpu_blacklist.cc
@@ -872,14 +872,12 @@ Value* GpuBlacklist::GetFeatureStatus(bool gpu_access_allowed,
ListValue* cr_bugs = new ListValue();
for (size_t j = 0; j < entry->cr_bugs().size(); ++j)
- cr_bugs->Append(Value::CreateIntegerValue(
- entry->cr_bugs()[j]));
+ cr_bugs->Append(base::NumberValue::New(entry->cr_bugs()[j]));
problem->Set("crBugs", cr_bugs);
ListValue* webkit_bugs = new ListValue();
for (size_t j = 0; j < entry->webkit_bugs().size(); ++j)
- webkit_bugs->Append(Value::CreateIntegerValue(
- entry->webkit_bugs()[j]));
+ webkit_bugs->Append(base::NumberValue::New(entry->webkit_bugs()[j]));
problem->Set("webkitBugs", webkit_bugs);
problem_list->Append(problem);
« no previous file with comments | « chrome/tools/build/generate_policy_source.py ('k') | content/browser/gpu/gpu_data_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698