| Index: chrome/browser/services/gcm/fake_gcm_profile_service.h
|
| diff --git a/chrome/browser/services/gcm/fake_gcm_profile_service.h b/chrome/browser/services/gcm/fake_gcm_profile_service.h
|
| index 1848c0b81beebbf2ade659e692c8d5b997efb464..324a8878b3e9af1ed733354ee434018eec0dd8fa 100644
|
| --- a/chrome/browser/services/gcm/fake_gcm_profile_service.h
|
| +++ b/chrome/browser/services/gcm/fake_gcm_profile_service.h
|
| @@ -26,7 +26,6 @@ class FakeGCMProfileService : public GCMProfileService {
|
| // GCMProfileService overrides.
|
| virtual void Register(const std::string& app_id,
|
| const std::vector<std::string>& sender_ids,
|
| - const std::string& cert,
|
| RegisterCallback callback) OVERRIDE;
|
| virtual void Send(const std::string& app_id,
|
| const std::string& receiver_id,
|
| @@ -35,7 +34,6 @@ class FakeGCMProfileService : public GCMProfileService {
|
|
|
| void RegisterFinished(const std::string& app_id,
|
| const std::vector<std::string>& sender_ids,
|
| - const std::string& cert,
|
| RegisterCallback callback);
|
|
|
| void SendFinished(const std::string& app_id,
|
| @@ -59,10 +57,6 @@ class FakeGCMProfileService : public GCMProfileService {
|
| return last_registered_sender_ids_;
|
| }
|
|
|
| - const std::string& last_registered_cert() const {
|
| - return last_registered_cert_;
|
| - }
|
| -
|
| void set_collect(bool collect) {
|
| collect_ = collect;
|
| }
|
| @@ -73,7 +67,6 @@ class FakeGCMProfileService : public GCMProfileService {
|
| bool collect_;
|
| std::string last_registered_app_id_;
|
| std::vector<std::string> last_registered_sender_ids_;
|
| - std::string last_registered_cert_;
|
| GCMClient::OutgoingMessage last_sent_message_;
|
| std::string last_receiver_id_;
|
|
|
|
|