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

Unified Diff: components/gcm_driver/gcm_stats_recorder_impl.cc

Issue 2433083003: GCM Registration: rename RESPONSE_PARSING_FAILED to NO_RESPONSE_BODY (Closed)
Patch Set: Fix registration_request.cc ShouldRetryWithStatus Created 4 years, 2 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
« no previous file with comments | « no previous file | google_apis/gcm/engine/registration_request.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/gcm_driver/gcm_stats_recorder_impl.cc
diff --git a/components/gcm_driver/gcm_stats_recorder_impl.cc b/components/gcm_driver/gcm_stats_recorder_impl.cc
index 8294dd18f8daa16ebeadcb29462999f2822b840e..6016d493e0ac25b8d04510ec1b653fbda3fa7660 100644
--- a/components/gcm_driver/gcm_stats_recorder_impl.cc
+++ b/components/gcm_driver/gcm_stats_recorder_impl.cc
@@ -102,8 +102,8 @@ std::string GetRegistrationStatusString(
return "URL_FETCHING_FAILED";
case gcm::RegistrationRequest::HTTP_NOT_OK:
return "HTTP_NOT_OK";
- case gcm::RegistrationRequest::RESPONSE_PARSING_FAILED:
- return "RESPONSE_PARSING_FAILED";
+ case gcm::RegistrationRequest::NO_RESPONSE_BODY:
+ return "NO_RESPONSE_BODY";
case gcm::RegistrationRequest::REACHED_MAX_RETRIES:
return "REACHED_MAX_RETRIES";
case gcm::RegistrationRequest::STATUS_COUNT:
« no previous file with comments | « no previous file | google_apis/gcm/engine/registration_request.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698