Updating trunk VERSION from 2139.0 to 2140.0
[chromium-blink-merge.git] / sync / internal_api / attachments / attachment_service_proxy_for_test.cc
blob53f7d6095cc6b5c6eb8f6de95813d36dd79d612f
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.
5 #include "sync/internal_api/public/attachments/attachment_service_proxy_for_test.h"
7 #include "base/message_loop/message_loop.h"
8 #include "base/thread_task_runner_handle.h"
9 #include "sync/internal_api/public/attachments/attachment_service_impl.h"
11 namespace syncer {
13 AttachmentServiceProxyForTest::OwningCore::OwningCore(
14 scoped_ptr<AttachmentService> wrapped,
15 scoped_ptr<base::WeakPtrFactory<AttachmentService> > weak_ptr_factory)
16 : Core(weak_ptr_factory->GetWeakPtr()),
17 wrapped_(wrapped.Pass()),
18 weak_ptr_factory_(weak_ptr_factory.Pass()) {
19 DCHECK(wrapped_);
22 AttachmentServiceProxyForTest::OwningCore::~OwningCore() {
25 // Static.
26 AttachmentServiceProxy AttachmentServiceProxyForTest::Create() {
27 scoped_ptr<AttachmentService> wrapped(AttachmentServiceImpl::CreateForTest());
28 // This class's base class, AttachmentServiceProxy, must be initialized with a
29 // WeakPtr to an AttachmentService. Because the base class ctor must be
30 // invoked before any of this class's members are initialized, we create the
31 // WeakPtrFactory here and pass it to the ctor so that it may initialize its
32 // base class and own the WeakPtrFactory.
34 // We must pass by scoped_ptr because WeakPtrFactory has no copy constructor.
35 scoped_ptr<base::WeakPtrFactory<AttachmentService> > weak_ptr_factory(
36 new base::WeakPtrFactory<AttachmentService>(wrapped.get()));
38 scoped_refptr<Core> core_for_test(
39 new OwningCore(wrapped.Pass(), weak_ptr_factory.Pass()));
41 scoped_refptr<base::SequencedTaskRunner> runner(
42 base::ThreadTaskRunnerHandle::Get());
43 if (!runner.get()) {
44 // Dummy runner for tests that don't care about AttachmentServiceProxy.
45 DVLOG(1) << "Creating dummy MessageLoop for AttachmentServiceProxy.";
46 base::MessageLoop loop;
47 // This works because |runner| takes a ref to the proxy.
48 runner = loop.message_loop_proxy();
50 return AttachmentServiceProxyForTest(runner, core_for_test);
53 AttachmentServiceProxyForTest::~AttachmentServiceProxyForTest() {
56 AttachmentServiceProxyForTest::AttachmentServiceProxyForTest(
57 const scoped_refptr<base::SequencedTaskRunner>& wrapped_task_runner,
58 const scoped_refptr<Core>& core)
59 : AttachmentServiceProxy(wrapped_task_runner, core) {
62 } // namespace syncer