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/core/attachments/attachment_service_proxy.h" | 5 #include "components/sync/api/attachments/attachment_service_proxy.h" |
| 6 |
| 7 #include <memory> |
6 | 8 |
7 #include "base/bind.h" | 9 #include "base/bind.h" |
8 #include "base/message_loop/message_loop.h" | 10 #include "base/message_loop/message_loop.h" |
9 #include "base/threading/thread_task_runner_handle.h" | 11 #include "base/threading/thread_task_runner_handle.h" |
10 | 12 |
11 namespace syncer { | 13 namespace syncer { |
12 | 14 |
13 namespace { | 15 namespace { |
14 | 16 |
15 // These ProxyFooCallback functions are used to invoke a callback in a specific | 17 // These ProxyFooCallback functions are used to invoke a callback in a specific |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 | 89 |
88 void AttachmentServiceProxy::Core::UploadAttachments( | 90 void AttachmentServiceProxy::Core::UploadAttachments( |
89 const AttachmentIdList& attachment_ids) { | 91 const AttachmentIdList& attachment_ids) { |
90 if (!wrapped_) { | 92 if (!wrapped_) { |
91 return; | 93 return; |
92 } | 94 } |
93 wrapped_->UploadAttachments(attachment_ids); | 95 wrapped_->UploadAttachments(attachment_ids); |
94 } | 96 } |
95 | 97 |
96 } // namespace syncer | 98 } // namespace syncer |
OLD | NEW |