| Index: content/public/common/push_messaging_status.cc
|
| diff --git a/content/public/common/push_messaging_status.cc b/content/public/common/push_messaging_status.cc
|
| index b955bfce95c036b3626ebcbc7d293352401091f4..09a56f4be8645bb88ca4732f5964fb464166ad49 100644
|
| --- a/content/public/common/push_messaging_status.cc
|
| +++ b/content/public/common/push_messaging_status.cc
|
| @@ -29,7 +29,8 @@ const char* PushRegistrationStatusToString(PushRegistrationStatus status) {
|
| return "Registration failed - push service error";
|
|
|
| case PUSH_REGISTRATION_STATUS_NO_SENDER_ID:
|
| - return "Registration failed - gcm_sender_id not found in manifest";
|
| + return "Registration failed - missing applicationServerKey, and "
|
| + "gcm_sender_id not found in manifest";
|
|
|
| case PUSH_REGISTRATION_STATUS_STORAGE_ERROR:
|
| return "Registration failed - storage error";
|
| @@ -49,7 +50,8 @@ const char* PushRegistrationStatusToString(PushRegistrationStatus status) {
|
| return "Registration failed - could not retrieve the public key";
|
|
|
| case PUSH_REGISTRATION_STATUS_MANIFEST_EMPTY_OR_MISSING:
|
| - return "Registration failed - manifest empty or missing";
|
| + return "Registration failed - missing applicationServerKey, and manifest "
|
| + "empty or missing";
|
| }
|
| NOTREACHED();
|
| return "";
|
|
|