| Index: google_apis/gcm/gcm_client.h
|
| diff --git a/google_apis/gcm/gcm_client.h b/google_apis/gcm/gcm_client.h
|
| index c57cee784c57fd8d1f7a6e8c13e5ddbe07263559..f243bfeea744957a8830672c08729b48d4120327 100644
|
| --- a/google_apis/gcm/gcm_client.h
|
| +++ b/google_apis/gcm/gcm_client.h
|
| @@ -40,8 +40,6 @@ class GCM_EXPORT GCMClient {
|
| INVALID_PARAMETER,
|
| // Profile not signed in.
|
| NOT_SIGNED_IN,
|
| - // Certificate was missing. Certain operation, like register, requires it.
|
| - CERTIFICATE_MISSING,
|
| // Previous asynchronous operation is still pending to finish. Certain
|
| // operation, like register, is only allowed one at a time.
|
| ASYNC_OPERATION_PENDING,
|
| @@ -161,12 +159,10 @@ class GCM_EXPORT GCMClient {
|
| // Registers the application for GCM. Delegate::OnRegisterFinished will be
|
| // called asynchronously upon completion.
|
| // |app_id|: application ID.
|
| - // |cert|: SHA-1 of public key of the application, in base16 format.
|
| // |sender_ids|: list of IDs of the servers that are allowed to send the
|
| // messages to the application. These IDs are assigned by the
|
| // Google API Console.
|
| virtual void Register(const std::string& app_id,
|
| - const std::string& cert,
|
| const std::vector<std::string>& sender_ids) = 0;
|
|
|
| // Unregisters the application from GCM when it is uninstalled.
|
|
|