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 #ifndef SYNC_INTERNAL_API_PUBLIC_ATTACHMENTS_FAKE_ATTACHMENT_STORE_H_ | 5 #ifndef SYNC_API_ATTACHMENTS_FAKE_ATTACHMENT_STORE_H_ |
6 #define SYNC_INTERNAL_API_PUBLIC_ATTACHMENTS_FAKE_ATTACHMENT_STORE_H_ | 6 #define SYNC_API_ATTACHMENTS_FAKE_ATTACHMENT_STORE_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 | 9 |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "base/stl_util.h" | 12 #include "base/stl_util.h" |
13 #include "sync/api/attachments/attachment_store.h" | 13 #include "sync/api/attachments/attachment_store.h" |
14 #include "sync/base/sync_export.h" | 14 #include "sync/base/sync_export.h" |
15 | 15 |
16 namespace base { | 16 namespace base { |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 class Backend; | 50 class Backend; |
51 | 51 |
52 scoped_refptr<Backend> backend_; | 52 scoped_refptr<Backend> backend_; |
53 scoped_refptr<base::SequencedTaskRunner> backend_task_runner_; | 53 scoped_refptr<base::SequencedTaskRunner> backend_task_runner_; |
54 | 54 |
55 DISALLOW_COPY_AND_ASSIGN(FakeAttachmentStore); | 55 DISALLOW_COPY_AND_ASSIGN(FakeAttachmentStore); |
56 }; | 56 }; |
57 | 57 |
58 } // namespace syncer | 58 } // namespace syncer |
59 | 59 |
60 #endif // SYNC_INTERNAL_API_PUBLIC_ATTACHMENTS_FAKE_ATTACHMENT_STORE_H_ | 60 #endif // SYNC_API_ATTACHMENTS_FAKE_ATTACHMENT_STORE_H_ |
OLD | NEW |