Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(185)

Side by Side Diff: components/sync/engine/attachments/in_memory_attachment_store.cc

Issue 2662453008: [Sync] Fix sync lint errors/includes, update presubmit. (Closed)
Patch Set: Rebase Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698