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

Unified Diff: components/gcm_driver/gcm_internals_helper.cc

Issue 2287733002: Switch //components away from base::ListValue::Append(Value*) overload. (Closed)
Patch Set: Test fix Created 4 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
Index: components/gcm_driver/gcm_internals_helper.cc
diff --git a/components/gcm_driver/gcm_internals_helper.cc b/components/gcm_driver/gcm_internals_helper.cc
index a3417e74467cacc124299124a3249ca1f80215e5..eb2ee7680a7c7cf12b287e359f31f8eced4d4528 100644
--- a/components/gcm_driver/gcm_internals_helper.cc
+++ b/components/gcm_driver/gcm_internals_helper.cc
@@ -4,6 +4,9 @@
#include "components/gcm_driver/gcm_internals_helper.h"
+#include <memory>
+#include <utility>
+
#include "base/format_macros.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_util.h"
@@ -20,24 +23,22 @@ namespace {
void SetCheckinInfo(const std::vector<gcm::CheckinActivity>& checkins,
base::ListValue* checkin_info) {
for (const gcm::CheckinActivity& checkin : checkins) {
- base::ListValue* row = new base::ListValue();
- checkin_info->Append(row);
-
+ std::unique_ptr<base::ListValue> row(new base::ListValue());
row->AppendDouble(checkin.time.ToJsTime());
row->AppendString(checkin.event);
row->AppendString(checkin.details);
+ checkin_info->Append(std::move(row));
}
}
void SetConnectionInfo(const std::vector<gcm::ConnectionActivity>& connections,
base::ListValue* connection_info) {
for (const gcm::ConnectionActivity& connection : connections) {
- base::ListValue* row = new base::ListValue();
- connection_info->Append(row);
-
+ std::unique_ptr<base::ListValue> row(new base::ListValue());
row->AppendDouble(connection.time.ToJsTime());
row->AppendString(connection.event);
row->AppendString(connection.details);
+ connection_info->Append(std::move(row));
}
}
@@ -45,44 +46,41 @@ void SetRegistrationInfo(
const std::vector<gcm::RegistrationActivity>& registrations,
base::ListValue* registration_info) {
for (const gcm::RegistrationActivity& registration : registrations) {
- base::ListValue* row = new base::ListValue();
- registration_info->Append(row);
-
+ std::unique_ptr<base::ListValue> row(new base::ListValue());
row->AppendDouble(registration.time.ToJsTime());
row->AppendString(registration.app_id);
row->AppendString(registration.source);
row->AppendString(registration.event);
row->AppendString(registration.details);
+ registration_info->Append(std::move(row));
}
}
void SetReceivingInfo(const std::vector<gcm::ReceivingActivity>& receives,
base::ListValue* receive_info) {
for (const gcm::ReceivingActivity& receive : receives) {
- base::ListValue* row = new base::ListValue();
- receive_info->Append(row);
-
+ std::unique_ptr<base::ListValue> row(new base::ListValue());
row->AppendDouble(receive.time.ToJsTime());
row->AppendString(receive.app_id);
row->AppendString(receive.from);
row->AppendString(base::IntToString(receive.message_byte_size));
row->AppendString(receive.event);
row->AppendString(receive.details);
+ receive_info->Append(std::move(row));
}
}
void SetSendingInfo(const std::vector<gcm::SendingActivity>& sends,
base::ListValue* send_info) {
for (const gcm::SendingActivity& send : sends) {
- base::ListValue* row = new base::ListValue();
- send_info->Append(row);
-
+ std::unique_ptr<base::ListValue> row(new base::ListValue());
row->AppendDouble(send.time.ToJsTime());
row->AppendString(send.app_id);
row->AppendString(send.receiver_id);
row->AppendString(send.message_id);
row->AppendString(send.event);
row->AppendString(send.details);
+ send_info->Append(std::move(row));
}
}
@@ -90,12 +88,11 @@ void SetDecryptionFailureInfo(
const std::vector<gcm::DecryptionFailureActivity>& failures,
base::ListValue* failure_info) {
for (const gcm::DecryptionFailureActivity& failure : failures) {
- base::ListValue* row = new base::ListValue();
- failure_info->Append(row);
-
+ std::unique_ptr<base::ListValue> row(new base::ListValue());
row->AppendDouble(failure.time.ToJsTime());
row->AppendString(failure.app_id);
row->AppendString(failure.details);
+ failure_info->Append(std::move(row));
}
}

Powered by Google App Engine
This is Rietveld 408576698