| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/sync/engine/attachments/in_memory_attachment_store.h" | 5 #include "components/sync/engine/attachments/in_memory_attachment_store.h" |
| 6 | 6 |
| 7 #include <memory> | 7 #include <memory> |
| 8 #include <utility> |
| 8 | 9 |
| 9 #include "base/bind.h" | 10 #include "base/bind.h" |
| 10 #include "base/callback.h" | 11 #include "base/callback.h" |
| 11 #include "base/location.h" | 12 #include "base/location.h" |
| 12 #include "base/sequenced_task_runner.h" | 13 #include "base/sequenced_task_runner.h" |
| 13 | 14 |
| 14 namespace syncer { | 15 namespace syncer { |
| 15 | 16 |
| 16 namespace { | 17 namespace { |
| 17 | 18 |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 : attachment(attachment) { | 157 : attachment(attachment) { |
| 157 components.insert(initial_reference_component); | 158 components.insert(initial_reference_component); |
| 158 } | 159 } |
| 159 | 160 |
| 160 InMemoryAttachmentStore::AttachmentEntry::AttachmentEntry( | 161 InMemoryAttachmentStore::AttachmentEntry::AttachmentEntry( |
| 161 const AttachmentEntry& other) = default; | 162 const AttachmentEntry& other) = default; |
| 162 | 163 |
| 163 InMemoryAttachmentStore::AttachmentEntry::~AttachmentEntry() {} | 164 InMemoryAttachmentStore::AttachmentEntry::~AttachmentEntry() {} |
| 164 | 165 |
| 165 } // namespace syncer | 166 } // namespace syncer |
| OLD | NEW |