| Index: chrome/browser/services/gcm/fake_gcm_profile_service.cc
|
| diff --git a/chrome/browser/services/gcm/fake_gcm_profile_service.cc b/chrome/browser/services/gcm/fake_gcm_profile_service.cc
|
| index c124f4f5ad21e72b98bc82813955a18625f9d55b..b789d15df6799cc95ccc75ab05556cf1d948ff0a 100644
|
| --- a/chrome/browser/services/gcm/fake_gcm_profile_service.cc
|
| +++ b/chrome/browser/services/gcm/fake_gcm_profile_service.cc
|
| @@ -27,7 +27,6 @@ FakeGCMProfileService::~FakeGCMProfileService() {}
|
|
|
| void FakeGCMProfileService::Register(const std::string& app_id,
|
| const std::vector<std::string>& sender_ids,
|
| - const std::string& cert,
|
| RegisterCallback callback) {
|
| base::MessageLoop::current()->PostTask(
|
| FROM_HERE,
|
| @@ -35,19 +34,16 @@ void FakeGCMProfileService::Register(const std::string& app_id,
|
| base::Unretained(this),
|
| app_id,
|
| sender_ids,
|
| - cert,
|
| callback));
|
| }
|
|
|
| void FakeGCMProfileService::RegisterFinished(
|
| const std::string& app_id,
|
| const std::vector<std::string>& sender_ids,
|
| - const std::string& cert,
|
| RegisterCallback callback) {
|
| if (collect_) {
|
| last_registered_app_id_ = app_id;
|
| last_registered_sender_ids_ = sender_ids;
|
| - last_registered_cert_ = cert;
|
| }
|
|
|
| callback.Run(base::UintToString(sender_ids.size()), GCMClient::SUCCESS);
|
|
|