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

Unified Diff: components/offline_pages/background/request_coordinator_event_logger.cc

Issue 2355163002: [Offline Pages] Breaks out new TIMED_OUT Offliner status for RequestCoordinator watchdog timeout in… (Closed)
Patch Set: Created 4 years, 3 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
Index: components/offline_pages/background/request_coordinator_event_logger.cc
diff --git a/components/offline_pages/background/request_coordinator_event_logger.cc b/components/offline_pages/background/request_coordinator_event_logger.cc
index 51b3bbcff1452bbce37e831faee5d0734ab95ecc..7bafc0504a6796f3bd8a6ddc435e384bd9dc1bf4 100644
--- a/components/offline_pages/background/request_coordinator_event_logger.cc
+++ b/components/offline_pages/background/request_coordinator_event_logger.cc
@@ -27,6 +27,8 @@ static std::string OfflinerRequestStatusToString(
return "SAVE_FAILED";
case Offliner::FOREGROUND_CANCELED:
return "FOREGROUND_CANCELED";
+ case Offliner::REQUEST_COORDINATOR_TIMED_OUT:
+ return "REQUEST_COORDINATOR_TIMED_OUT";
default:
NOTREACHED();
return std::to_string(static_cast<int>(request_status));

Powered by Google App Engine
This is Rietveld 408576698