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

Unified Diff: components/offline_pages/background/request_queue_store.h

Issue 2063533002: Rewrite enum in MACRO_STYLE (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Change enum name to match ios convention Created 4 years, 6 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_queue_store.h
diff --git a/components/offline_pages/background/request_queue_store.h b/components/offline_pages/background/request_queue_store.h
index 076430a139fe3fb716c06c35ec59527bf37fd72e..0fd34a32aed34abaa1a57108d63751e5797f384a 100644
--- a/components/offline_pages/background/request_queue_store.h
+++ b/components/offline_pages/background/request_queue_store.h
@@ -18,9 +18,9 @@ class SavePageRequest;
class RequestQueueStore {
public:
enum class UpdateStatus {
- kAdded, // Request was added successfully.
- kUpdated, // Request was updated successfully.
- kFailed, // Add or update attempt failed.
+ ADDED, // Request was added successfully.
+ UPDATED, // Request was updated successfully.
+ FAILED, // Add or update attempt failed.
};
typedef base::Callback<void(

Powered by Google App Engine
This is Rietveld 408576698