| 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 #include "chrome/browser/services/gcm/fake_gcm_client_factory.h" | |
| 6 | |
| 7 #include "base/memory/scoped_ptr.h" | |
| 8 #include "base/sequenced_task_runner.h" | |
| 9 #include "google_apis/gcm/gcm_client.h" | |
| 10 | |
| 11 namespace gcm { | |
| 12 | |
| 13 FakeGCMClientFactory::FakeGCMClientFactory( | |
| 14 FakeGCMClient::StartMode gcm_client_start_mode, | |
| 15 const scoped_refptr<base::SequencedTaskRunner>& ui_thread, | |
| 16 const scoped_refptr<base::SequencedTaskRunner>& io_thread) | |
| 17 : gcm_client_start_mode_(gcm_client_start_mode), | |
| 18 ui_thread_(ui_thread), | |
| 19 io_thread_(io_thread) { | |
| 20 } | |
| 21 | |
| 22 FakeGCMClientFactory::~FakeGCMClientFactory() { | |
| 23 } | |
| 24 | |
| 25 scoped_ptr<GCMClient> FakeGCMClientFactory::BuildInstance() { | |
| 26 return scoped_ptr<GCMClient>(new FakeGCMClient( | |
| 27 gcm_client_start_mode_, ui_thread_, io_thread_)); | |
| 28 } | |
| 29 | |
| 30 } // namespace gcm | |
| OLD | NEW |