| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef SYNC_INTERNAL_API_PUBLIC_ATTACHMENTS_ATTACHMENT_SERVICE_PROXY_FOR_TEST_H
_ | |
| 6 #define SYNC_INTERNAL_API_PUBLIC_ATTACHMENTS_ATTACHMENT_SERVICE_PROXY_FOR_TEST_H
_ | |
| 7 | |
| 8 #include <memory> | |
| 9 | |
| 10 #include "base/macros.h" | |
| 11 #include "base/memory/weak_ptr.h" | |
| 12 #include "sync/base/sync_export.h" | |
| 13 #include "sync/internal_api/public/attachments/attachment_service_proxy.h" | |
| 14 | |
| 15 namespace syncer { | |
| 16 | |
| 17 // An self-contained AttachmentServiceProxy to reduce boilerplate code in tests. | |
| 18 // | |
| 19 // Constructs and owns an AttachmentService suitable for use in tests. | |
| 20 // NOTE: This class does not require the current thread to have a MessageLoop, | |
| 21 // however all methods will effectively become no-op stubs in that case. | |
| 22 class SYNC_EXPORT AttachmentServiceProxyForTest | |
| 23 : public AttachmentServiceProxy { | |
| 24 public: | |
| 25 static AttachmentServiceProxy Create(); | |
| 26 ~AttachmentServiceProxyForTest() override; | |
| 27 | |
| 28 private: | |
| 29 // A Core that owns the wrapped AttachmentService. | |
| 30 class OwningCore : public AttachmentServiceProxy::Core { | |
| 31 public: | |
| 32 OwningCore(std::unique_ptr<AttachmentService>, | |
| 33 std::unique_ptr<base::WeakPtrFactory<AttachmentService>> | |
| 34 weak_ptr_factory); | |
| 35 | |
| 36 private: | |
| 37 ~OwningCore() override; | |
| 38 | |
| 39 std::unique_ptr<AttachmentService> wrapped_; | |
| 40 // WeakPtrFactory for wrapped_. See Create() for why this is a unique_ptr. | |
| 41 std::unique_ptr<base::WeakPtrFactory<AttachmentService>> weak_ptr_factory_; | |
| 42 | |
| 43 DISALLOW_COPY_AND_ASSIGN(OwningCore); | |
| 44 }; | |
| 45 | |
| 46 AttachmentServiceProxyForTest( | |
| 47 const scoped_refptr<base::SequencedTaskRunner>& wrapped_task_runner, | |
| 48 const scoped_refptr<Core>& core); | |
| 49 }; | |
| 50 | |
| 51 } // namespace syncer | |
| 52 | |
| 53 #endif // SYNC_INTERNAL_API_PUBLIC_ATTACHMENTS_ATTACHMENT_SERVICE_PROXY_FOR_TES
T_H_ | |
| OLD | NEW |