[Chromoting] Remove check for out/Release dir in build-webapp.py
[chromium-blink-merge.git] / components / gcm_driver / fake_gcm_client_factory.h
blobe70e48aa4cce2fcc332c822548eb7c07be73baa1
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.
5 #ifndef COMPONENTS_GCM_DRIVER_FAKE_GCM_CLIENT_FACTORY_H_
6 #define COMPONENTS_GCM_DRIVER_FAKE_GCM_CLIENT_FACTORY_H_
8 #include "base/compiler_specific.h"
9 #include "base/macros.h"
10 #include "components/gcm_driver/fake_gcm_client.h"
11 #include "components/gcm_driver/gcm_client_factory.h"
13 namespace base {
14 class SequencedTaskRunner;
17 namespace gcm {
19 class GCMClient;
21 class FakeGCMClientFactory : public GCMClientFactory {
22 public:
23 FakeGCMClientFactory(
24 const scoped_refptr<base::SequencedTaskRunner>& ui_thread,
25 const scoped_refptr<base::SequencedTaskRunner>& io_thread);
26 ~FakeGCMClientFactory() override;
28 // GCMClientFactory:
29 scoped_ptr<GCMClient> BuildInstance() override;
31 private:
32 scoped_refptr<base::SequencedTaskRunner> ui_thread_;
33 scoped_refptr<base::SequencedTaskRunner> io_thread_;
35 DISALLOW_COPY_AND_ASSIGN(FakeGCMClientFactory);
38 } // namespace gcm
40 #endif // COMPONENTS_GCM_DRIVER_FAKE_GCM_CLIENT_FACTORY_H_