| Index: chrome/browser/services/gcm/fake_gcm_client_factory.h
|
| diff --git a/chrome/browser/services/gcm/fake_gcm_client_factory.h b/chrome/browser/services/gcm/fake_gcm_client_factory.h
|
| deleted file mode 100644
|
| index f02bc7b9fa7b25882bd95e6733c471c6d5e63bdd..0000000000000000000000000000000000000000
|
| --- a/chrome/browser/services/gcm/fake_gcm_client_factory.h
|
| +++ /dev/null
|
| @@ -1,42 +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.
|
| -
|
| -#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_
|
|
|