Chromium Code Reviews| Index: components/gcm_driver/fake_gcm_client_factory.h |
| diff --git a/chrome/browser/services/gcm/fake_gcm_client_factory.h b/components/gcm_driver/fake_gcm_client_factory.h |
| similarity index 78% |
| rename from chrome/browser/services/gcm/fake_gcm_client_factory.h |
| rename to components/gcm_driver/fake_gcm_client_factory.h |
| index f02bc7b9fa7b25882bd95e6733c471c6d5e63bdd..f456fa4a076cb25e1ed4c2010aab4e1cdcac711c 100644 |
| --- a/chrome/browser/services/gcm/fake_gcm_client_factory.h |
| +++ b/components/gcm_driver/fake_gcm_client_factory.h |
| @@ -1,42 +1,42 @@ |
| -// 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. |
| - |
| -#ifndef CHROME_BROWSER_SERVICES_GCM_FAKE_GCM_CLIENT_FACTORY_H_ |
| -#define CHROME_BROWSER_SERVICES_GCM_FAKE_GCM_CLIENT_FACTORY_H_ |
| - |
| -#include "base/compiler_specific.h" |
| -#include "base/macros.h" |
| -#include "chrome/browser/services/gcm/fake_gcm_client.h" |
| -#include "components/gcm_driver/gcm_client_factory.h" |
| - |
| -namespace base { |
| -class SequencedTaskRunner; |
| -} |
| - |
| -namespace gcm { |
| - |
| -class GCMClient; |
| - |
| -class FakeGCMClientFactory : public GCMClientFactory { |
| - public: |
| - FakeGCMClientFactory( |
| - FakeGCMClient::StartMode gcm_client_start_mode, |
| - const scoped_refptr<base::SequencedTaskRunner>& ui_thread, |
| - const scoped_refptr<base::SequencedTaskRunner>& io_thread); |
| - virtual ~FakeGCMClientFactory(); |
| - |
| - // GCMClientFactory: |
| - virtual scoped_ptr<GCMClient> BuildInstance() OVERRIDE; |
| - |
| - private: |
| - FakeGCMClient::StartMode gcm_client_start_mode_; |
| - scoped_refptr<base::SequencedTaskRunner> ui_thread_; |
| - scoped_refptr<base::SequencedTaskRunner> io_thread_; |
| - |
| - DISALLOW_COPY_AND_ASSIGN(FakeGCMClientFactory); |
| -}; |
| - |
| -} // namespace gcm |
| - |
| -#endif // CHROME_BROWSER_SERVICES_GCM_FAKE_GCM_CLIENT_FACTORY_H_ |
| +// 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. |
| + |
| +#ifndef COMPONENTS_GCM_DRIVER_FAKE_GCM_CLIENT_FACTORY_H_ |
| +#define COMPONENTS_GCM_DRIVER_FAKE_GCM_CLIENT_FACTORY_H_ |
| + |
| +#include "base/compiler_specific.h" |
| +#include "base/macros.h" |
| +#include "components/gcm_driver/fake_gcm_client.h" |
|
blundell
2014/05/26 07:31:56
aside: What is this class needed for? It seems lik
jianli
2014/05/27 17:27:55
We want to allow the production code and testing c
|
| +#include "components/gcm_driver/gcm_client_factory.h" |
| + |
| +namespace base { |
| +class SequencedTaskRunner; |
| +} |
| + |
| +namespace gcm { |
| + |
| +class GCMClient; |
| + |
| +class FakeGCMClientFactory : public GCMClientFactory { |
| + public: |
| + FakeGCMClientFactory( |
| + FakeGCMClient::StartMode gcm_client_start_mode, |
| + const scoped_refptr<base::SequencedTaskRunner>& ui_thread, |
| + const scoped_refptr<base::SequencedTaskRunner>& io_thread); |
| + virtual ~FakeGCMClientFactory(); |
| + |
| + // GCMClientFactory: |
| + virtual scoped_ptr<GCMClient> BuildInstance() OVERRIDE; |
| + |
| + private: |
| + FakeGCMClient::StartMode gcm_client_start_mode_; |
| + scoped_refptr<base::SequencedTaskRunner> ui_thread_; |
| + scoped_refptr<base::SequencedTaskRunner> io_thread_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(FakeGCMClientFactory); |
| +}; |
| + |
| +} // namespace gcm |
| + |
| +#endif // COMPONENTS_GCM_DRIVER_FAKE_GCM_CLIENT_FACTORY_H_ |