diff options
Diffstat (limited to 'sync/api/sync_data.cc')
-rw-r--r-- | sync/api/sync_data.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sync/api/sync_data.cc b/sync/api/sync_data.cc index e95a2df..8df5eae 100644 --- a/sync/api/sync_data.cc +++ b/sync/api/sync_data.cc @@ -121,7 +121,8 @@ std::string SyncData::ToString() const { std::string type = ModelTypeToString(GetDataType()); std::string specifics; - scoped_ptr<DictionaryValue> value(EntitySpecificsToValue(GetSpecifics())); + scoped_ptr<base::DictionaryValue> value( + EntitySpecificsToValue(GetSpecifics())); base::JSONWriter::WriteWithOptions(value.get(), base::JSONWriter::OPTIONS_PRETTY_PRINT, &specifics); |