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

Side by Side Diff: chrome/browser/services/gcm/fake_gcm_client.h

Issue 284193005: Rename GCMClientMock to FakeGCMClient (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 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 #ifndef CHROME_BROWSER_SERVICES_GCM_GCM_CLIENT_MOCK_H_ 5 #ifndef CHROME_BROWSER_SERVICES_GCM_FAKE_GCM_CLIENT_H_
6 #define CHROME_BROWSER_SERVICES_GCM_GCM_CLIENT_MOCK_H_ 6 #define CHROME_BROWSER_SERVICES_GCM_FAKE_GCM_CLIENT_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/memory/weak_ptr.h" 9 #include "base/memory/weak_ptr.h"
10 #include "google_apis/gcm/gcm_client.h" 10 #include "google_apis/gcm/gcm_client.h"
11 11
12 namespace gcm { 12 namespace gcm {
13 13
14 class GCMClientMock : public GCMClient { 14 class FakeGCMClient : public GCMClient {
15 public: 15 public:
16 enum Status { 16 enum Status {
17 UNINITIALIZED, 17 UNINITIALIZED,
18 STARTED, 18 STARTED,
19 STOPPED, 19 STOPPED,
20 CHECKED_OUT 20 CHECKED_OUT
21 }; 21 };
22 22
23 enum StartMode { 23 enum StartMode {
24 NO_DELAY_START, 24 NO_DELAY_START,
25 DELAY_START, 25 DELAY_START,
26 }; 26 };
27 27
28 explicit GCMClientMock(StartMode start_mode); 28 explicit FakeGCMClient(StartMode start_mode);
29 virtual ~GCMClientMock(); 29 virtual ~FakeGCMClient();
30 30
31 // Overridden from GCMClient: 31 // Overridden from GCMClient:
32 // Called on IO thread. 32 // Called on IO thread.
33 virtual void Initialize( 33 virtual void Initialize(
34 const checkin_proto::ChromeBuildProto& chrome_build_proto, 34 const checkin_proto::ChromeBuildProto& chrome_build_proto,
35 const base::FilePath& store_path, 35 const base::FilePath& store_path,
36 const std::vector<std::string>& account_ids, 36 const std::vector<std::string>& account_ids,
37 const scoped_refptr<base::SequencedTaskRunner>& blocking_task_runner, 37 const scoped_refptr<base::SequencedTaskRunner>& blocking_task_runner,
38 const scoped_refptr<net::URLRequestContextGetter>& 38 const scoped_refptr<net::URLRequestContextGetter>&
39 url_request_context_getter, 39 url_request_context_getter,
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 void SendFinished(const std::string& app_id, const OutgoingMessage& message); 77 void SendFinished(const std::string& app_id, const OutgoingMessage& message);
78 void MessageReceived(const std::string& app_id, 78 void MessageReceived(const std::string& app_id,
79 const IncomingMessage& message); 79 const IncomingMessage& message);
80 void MessagesDeleted(const std::string& app_id); 80 void MessagesDeleted(const std::string& app_id);
81 void MessageSendError(const std::string& app_id, 81 void MessageSendError(const std::string& app_id,
82 const SendErrorDetails& send_error_details); 82 const SendErrorDetails& send_error_details);
83 83
84 Delegate* delegate_; 84 Delegate* delegate_;
85 Status status_; 85 Status status_;
86 StartMode start_mode_; 86 StartMode start_mode_;
87 base::WeakPtrFactory<GCMClientMock> weak_ptr_factory_; 87 base::WeakPtrFactory<FakeGCMClient> weak_ptr_factory_;
88 88
89 DISALLOW_COPY_AND_ASSIGN(GCMClientMock); 89 DISALLOW_COPY_AND_ASSIGN(FakeGCMClient);
90 }; 90 };
91 91
92 } // namespace gcm 92 } // namespace gcm
93 93
94 #endif // CHROME_BROWSER_SERVICES_GCM_GCM_CLIENT_MOCK_H_ 94 #endif // CHROME_BROWSER_SERVICES_GCM_FAKE_GCM_CLIENT_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_gcm_app_handler_unittest.cc ('k') | chrome/browser/services/gcm/fake_gcm_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698