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

Unified Diff: chrome/browser/services/gcm/fake_gcm_client_factory.h

Issue 285623002: Rename GCMClient::Load to GCMClient::Start (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Patch 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 side-by-side diff with in-line comments
Download patch
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
index ba6c74a12de4de060a57e487aff22fc5cfc3e416..11fdf6595827f6f1e023fe53408a77fef769ba39 100644
--- a/chrome/browser/services/gcm/fake_gcm_client_factory.h
+++ b/chrome/browser/services/gcm/fake_gcm_client_factory.h
@@ -16,15 +16,14 @@ class GCMClient;
class FakeGCMClientFactory : public GCMClientFactory {
public:
- explicit FakeGCMClientFactory(
- GCMClientMock::LoadingDelay gcm_client_loading_delay);
+ explicit FakeGCMClientFactory(GCMClientMock::StartMode gcm_client_start_mode);
virtual ~FakeGCMClientFactory();
// GCMClientFactory:
virtual scoped_ptr<GCMClient> BuildInstance() OVERRIDE;
private:
- GCMClientMock::LoadingDelay gcm_client_loading_delay_;
+ GCMClientMock::StartMode gcm_client_start_mode_;
DISALLOW_COPY_AND_ASSIGN(FakeGCMClientFactory);
};

Powered by Google App Engine
This is Rietveld 408576698