Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(403)

Side by Side Diff: chrome/browser/services/gcm/fake_gcm_client_factory.cc

Issue 292813007: Remove dependency on content::BrowserThread from GCMDriver (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 "chrome/browser/services/gcm/fake_gcm_client_factory.h" 5 #include "chrome/browser/services/gcm/fake_gcm_client_factory.h"
6 6
7 #include "base/memory/scoped_ptr.h" 7 #include "base/memory/scoped_ptr.h"
8 #include "base/message_loop/message_loop_proxy.h"
8 #include "google_apis/gcm/gcm_client.h" 9 #include "google_apis/gcm/gcm_client.h"
9 10
10 namespace gcm { 11 namespace gcm {
11 12
12 FakeGCMClientFactory::FakeGCMClientFactory( 13 FakeGCMClientFactory::FakeGCMClientFactory(
13 FakeGCMClient::StartMode gcm_client_start_mode) 14 FakeGCMClient::StartMode gcm_client_start_mode,
14 : gcm_client_start_mode_(gcm_client_start_mode) { 15 const scoped_refptr<base::MessageLoopProxy>& ui_thread,
16 const scoped_refptr<base::MessageLoopProxy>& io_thread)
17 : gcm_client_start_mode_(gcm_client_start_mode),
18 ui_thread_(ui_thread),
19 io_thread_(io_thread) {
15 } 20 }
16 21
17 FakeGCMClientFactory::~FakeGCMClientFactory() { 22 FakeGCMClientFactory::~FakeGCMClientFactory() {
18 } 23 }
19 24
20 scoped_ptr<GCMClient> FakeGCMClientFactory::BuildInstance() { 25 scoped_ptr<GCMClient> FakeGCMClientFactory::BuildInstance() {
21 return scoped_ptr<GCMClient>(new FakeGCMClient(gcm_client_start_mode_)); 26 return scoped_ptr<GCMClient>(new FakeGCMClient(
27 gcm_client_start_mode_, ui_thread_, io_thread_));
22 } 28 }
23 29
24 } // namespace gcm 30 } // namespace gcm
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698