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

Unified Diff: extensions/renderer/argument_spec.cc

Issue 2740143002: Change base::Value::ListStorage to std::vector<base::Value> (Closed)
Patch Set: Rebase 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/renderer/api_signature.cc ('k') | extensions/renderer/dispatcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/renderer/argument_spec.cc
diff --git a/extensions/renderer/argument_spec.cc b/extensions/renderer/argument_spec.cc
index b0cb7c3aa46abed98e0d562bc71ac172be73aa28..18367145d9e1073b5f93ff2e02f437c45a6ea312 100644
--- a/extensions/renderer/argument_spec.cc
+++ b/extensions/renderer/argument_spec.cc
@@ -60,7 +60,7 @@ void ArgumentSpec::InitializeType(const base::DictionaryValue* dict) {
type_ = ArgumentType::CHOICES;
choices_.reserve(choices->GetSize());
for (const auto& choice : *choices)
- choices_.push_back(base::MakeUnique<ArgumentSpec>(*choice));
+ choices_.push_back(base::MakeUnique<ArgumentSpec>(choice));
return;
}
}
« no previous file with comments | « extensions/renderer/api_signature.cc ('k') | extensions/renderer/dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698