Index: components/sync/core/change_record.cc |
diff --git a/sync/internal_api/change_record.cc b/components/sync/core/change_record.cc |
similarity index 81% |
rename from sync/internal_api/change_record.cc |
rename to components/sync/core/change_record.cc |
index 97cfeef77fc91395702a6c4907c62113f0b0b0ee..ddd3f1988bbe7c61baf4350c450057e0f91971d4 100644 |
--- a/sync/internal_api/change_record.cc |
+++ b/components/sync/core/change_record.cc |
@@ -2,20 +2,19 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include "sync/internal_api/public/change_record.h" |
+#include "components/sync/core/change_record.h" |
#include <string> |
#include "base/strings/string_number_conversions.h" |
#include "base/values.h" |
-#include "sync/internal_api/public/base_node.h" |
-#include "sync/internal_api/public/read_node.h" |
-#include "sync/protocol/proto_value_conversions.h" |
+#include "components/sync/core/base_node.h" |
+#include "components/sync/core/read_node.h" |
+#include "components/sync/protocol/proto_value_conversions.h" |
namespace syncer { |
-ChangeRecord::ChangeRecord() |
- : id(kInvalidId), action(ACTION_ADD) {} |
+ChangeRecord::ChangeRecord() : id(kInvalidId), action(ACTION_ADD) {} |
ChangeRecord::ChangeRecord(const ChangeRecord& other) = default; |
@@ -54,8 +53,7 @@ ExtraPasswordChangeRecordData::ExtraPasswordChangeRecordData() {} |
ExtraPasswordChangeRecordData::ExtraPasswordChangeRecordData( |
const sync_pb::PasswordSpecificsData& data) |
- : unencrypted_(data) { |
-} |
+ : unencrypted_(data) {} |
ExtraPasswordChangeRecordData::~ExtraPasswordChangeRecordData() {} |
@@ -65,7 +63,7 @@ std::unique_ptr<base::DictionaryValue> ExtraPasswordChangeRecordData::ToValue() |
} |
const sync_pb::PasswordSpecificsData& |
- ExtraPasswordChangeRecordData::unencrypted() const { |
+ExtraPasswordChangeRecordData::unencrypted() const { |
return unencrypted_; |
} |