| Index: sync/internal_api/events/protocol_event.cc
|
| diff --git a/sync/internal_api/events/protocol_event.cc b/sync/internal_api/events/protocol_event.cc
|
| index 49e43b52c03aba398dced46e1f46c7791614cf10..f7fdb00c31a5c4b4dd0331b71b6cb007383711dc 100644
|
| --- a/sync/internal_api/events/protocol_event.cc
|
| +++ b/sync/internal_api/events/protocol_event.cc
|
| @@ -10,9 +10,9 @@ ProtocolEvent::ProtocolEvent() {}
|
|
|
| ProtocolEvent::~ProtocolEvent() {}
|
|
|
| -scoped_ptr<base::DictionaryValue> ProtocolEvent::ToValue(
|
| +std::unique_ptr<base::DictionaryValue> ProtocolEvent::ToValue(
|
| const ProtocolEvent& event) {
|
| - scoped_ptr<base::DictionaryValue> dict(new base::DictionaryValue());
|
| + std::unique_ptr<base::DictionaryValue> dict(new base::DictionaryValue());
|
|
|
| dict->SetDouble("time", event.GetTimestamp().ToJsTime());
|
| dict->SetString("type", event.GetType());
|
|
|