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

Unified Diff: chrome/browser/extensions/api/declarative_content/content_action.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
Index: chrome/browser/extensions/api/declarative_content/content_action.cc
diff --git a/chrome/browser/extensions/api/declarative_content/content_action.cc b/chrome/browser/extensions/api/declarative_content/content_action.cc
index 5185a417e7551f1dd10ce223477f0300fb689812..6da57a16b916dc7249e752525e0a4b7801d53355 100644
--- a/chrome/browser/extensions/api/declarative_content/content_action.cc
+++ b/chrome/browser/extensions/api/declarative_content/content_action.cc
@@ -170,7 +170,7 @@
it != append_strings.end();
++it) {
std::string value;
- if (it->GetAsString(&value)) {
+ if ((*it)->GetAsString(&value)) {
append_to->push_back(value);
} else {
return false;

Powered by Google App Engine
This is Rietveld 408576698