Index: chrome/browser/services/gcm/fake_gcm_client_factory.cc |
diff --git a/chrome/browser/services/gcm/fake_gcm_client_factory.cc b/chrome/browser/services/gcm/fake_gcm_client_factory.cc |
deleted file mode 100644 |
index c565616ee801e4401f5bcce17af64cd28897b165..0000000000000000000000000000000000000000 |
--- a/chrome/browser/services/gcm/fake_gcm_client_factory.cc |
+++ /dev/null |
@@ -1,30 +0,0 @@ |
-// Copyright 2014 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#include "chrome/browser/services/gcm/fake_gcm_client_factory.h" |
- |
-#include "base/memory/scoped_ptr.h" |
-#include "base/sequenced_task_runner.h" |
-#include "google_apis/gcm/gcm_client.h" |
- |
-namespace gcm { |
- |
-FakeGCMClientFactory::FakeGCMClientFactory( |
- FakeGCMClient::StartMode gcm_client_start_mode, |
- const scoped_refptr<base::SequencedTaskRunner>& ui_thread, |
- const scoped_refptr<base::SequencedTaskRunner>& io_thread) |
- : gcm_client_start_mode_(gcm_client_start_mode), |
- ui_thread_(ui_thread), |
- io_thread_(io_thread) { |
-} |
- |
-FakeGCMClientFactory::~FakeGCMClientFactory() { |
-} |
- |
-scoped_ptr<GCMClient> FakeGCMClientFactory::BuildInstance() { |
- return scoped_ptr<GCMClient>(new FakeGCMClient( |
- gcm_client_start_mode_, ui_thread_, io_thread_)); |
-} |
- |
-} // namespace gcm |