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

Unified Diff: dbus/values_util.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 | « content/test/fuzzer/renderer_tree_fuzzer.cc ('k') | extensions/browser/api/declarative/declarative_api.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dbus/values_util.cc
diff --git a/dbus/values_util.cc b/dbus/values_util.cc
index e57380d1fa7e0b1b3f0987b773ed71707210fc8f..1e035c9cfe9e5ee416e84e0732c90ec2c0369e26 100644
--- a/dbus/values_util.cc
+++ b/dbus/values_util.cc
@@ -282,7 +282,7 @@
dbus::MessageWriter array_writer(NULL);
writer->OpenArray("v", &array_writer);
for (const auto& value : *list) {
- AppendValueDataAsVariant(&array_writer, value);
+ AppendValueDataAsVariant(&array_writer, *value);
}
writer->CloseContainer(&array_writer);
break;
« no previous file with comments | « content/test/fuzzer/renderer_tree_fuzzer.cc ('k') | extensions/browser/api/declarative/declarative_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698