| Index: components/offline_pages/background/save_page_request.h
|
| diff --git a/components/offline_pages/background/save_page_request.h b/components/offline_pages/background/save_page_request.h
|
| index 5b2ca0d3d1ef5e8971a06d9c06d5a05bb724e63f..571eeae9464a0bd6335c51cce02c173c120ad519 100644
|
| --- a/components/offline_pages/background/save_page_request.h
|
| +++ b/components/offline_pages/background/save_page_request.h
|
| @@ -17,14 +17,14 @@ namespace offline_pages {
|
| class SavePageRequest {
|
| public:
|
| enum class Status {
|
| - kNotReady, // Component requested a page be saved, but not until
|
| + NOT_READY, // Component requested a page be saved, but not until
|
| // |activation_time_|.
|
| - kPending, // Page request is pending, and coordinator can attempt it
|
| + PENDING, // Page request is pending, and coordinator can attempt it
|
| // when it gets a chance to.
|
| - kStarted, // The request is currently being processed.
|
| - kFailed, // Page request failed many times and will no longer be
|
| + STARTED, // The request is currently being processed.
|
| + FAILED, // Page request failed many times and will no longer be
|
| // retried.
|
| - kExpired, // Save page request expired without being fulfilled.
|
| + EXPIRED, // Save page request expired without being fulfilled.
|
| };
|
|
|
| SavePageRequest(int64_t request_id,
|
|
|