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

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

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.cc
diff --git a/chrome/browser/services/gcm/fake_gcm_client_factory.cc b/chrome/browser/services/gcm/fake_gcm_client_factory.cc
index 2d1d23c8c3d4458f44bd2df4c9d1021f50fdf566..ba44d4de3ffe8f3b445aab328eab673bcb4c7cc0 100644
--- a/chrome/browser/services/gcm/fake_gcm_client_factory.cc
+++ b/chrome/browser/services/gcm/fake_gcm_client_factory.cc
@@ -10,15 +10,15 @@
namespace gcm {
FakeGCMClientFactory::FakeGCMClientFactory(
- GCMClientMock::LoadingDelay gcm_client_loading_delay)
- : gcm_client_loading_delay_(gcm_client_loading_delay) {
+ GCMClientMock::StartMode gcm_client_start_mode)
+ : gcm_client_start_mode_(gcm_client_start_mode) {
}
FakeGCMClientFactory::~FakeGCMClientFactory() {
}
scoped_ptr<GCMClient> FakeGCMClientFactory::BuildInstance() {
- return scoped_ptr<GCMClient>(new GCMClientMock(gcm_client_loading_delay_));
+ return scoped_ptr<GCMClient>(new GCMClientMock(gcm_client_start_mode_));
}
} // namespace gcm
« no previous file with comments | « chrome/browser/services/gcm/fake_gcm_client_factory.h ('k') | chrome/browser/services/gcm/gcm_client_mock.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698