Ankush Singh | ee2362f | 2023-08-29 09:42:03 | [diff] [blame] | 1 | // Copyright 2023 The Chromium Authors |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #include "components/sync/service/local_data_description.h" |
| 6 | |
| 7 | namespace syncer { |
| 8 | |
| 9 | LocalDataDescription::LocalDataDescription() = default; |
| 10 | |
Ankush Singh | 15b04fc | 2023-08-31 13:52:00 | [diff] [blame^] | 11 | LocalDataDescription::LocalDataDescription( |
| 12 | ModelType type, |
| 13 | size_t item_count, |
| 14 | const std::vector<std::string>& item_preview) |
| 15 | : type(type), item_count(item_count), item_preview(item_preview) {} |
| 16 | |
Ankush Singh | ee2362f | 2023-08-29 09:42:03 | [diff] [blame] | 17 | LocalDataDescription::LocalDataDescription(const LocalDataDescription&) = |
| 18 | default; |
| 19 | |
| 20 | LocalDataDescription& LocalDataDescription::operator=( |
| 21 | const LocalDataDescription&) = default; |
| 22 | |
| 23 | LocalDataDescription::LocalDataDescription(LocalDataDescription&&) = default; |
| 24 | |
| 25 | LocalDataDescription& LocalDataDescription::operator=(LocalDataDescription&&) = |
| 26 | default; |
| 27 | |
| 28 | LocalDataDescription::~LocalDataDescription() = default; |
| 29 | |
| 30 | } // namespace syncer |