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

Unified Diff: extensions/common/manifest_handlers/requirements_info.cc

Issue 2816513002: Revert of Change base::Value::ListStorage to std::vector<base::Value> (Closed)
Patch Set: Created 3 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
« no previous file with comments | « extensions/common/manifest_handlers/kiosk_mode_info.cc ('k') | extensions/renderer/api_binding.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/common/manifest_handlers/requirements_info.cc
diff --git a/extensions/common/manifest_handlers/requirements_info.cc b/extensions/common/manifest_handlers/requirements_info.cc
index 0acbf7baddc187506faa674d0c5fd7cd082de9cc..d73af89c0902de0c689f704675ed6525e5980fdc 100644
--- a/extensions/common/manifest_handlers/requirements_info.cc
+++ b/extensions/common/manifest_handlers/requirements_info.cc
@@ -117,7 +117,7 @@
for (base::ListValue::const_iterator feature_iter = features->begin();
feature_iter != features->end(); ++feature_iter) {
std::string feature;
- if (feature_iter->GetAsString(&feature)) {
+ if ((*feature_iter)->GetAsString(&feature)) {
if (feature == "webgl") {
requirements->webgl = true;
} else if (feature == "css3d") {
« no previous file with comments | « extensions/common/manifest_handlers/kiosk_mode_info.cc ('k') | extensions/renderer/api_binding.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698