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

Unified Diff: components/gcm_driver/gcm_message_status.h

Issue 2578583002: Provide a mechanism for the GCM driver to send message receipts to GCM.
Patch Set: Adding new file I missed previously. Created 3 years, 11 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/gcm_driver/gcm_message_status.h
diff --git a/components/gcm_driver/gcm_message_status.h b/components/gcm_driver/gcm_message_status.h
new file mode 100644
index 0000000000000000000000000000000000000000..a9b7904f2c337e11be2a86df27d8804bf2673ca8
--- /dev/null
+++ b/components/gcm_driver/gcm_message_status.h
@@ -0,0 +1,27 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef COMPONENTS_GCM_DRIVER_GCM_MESSAGE_STATUS_H_
+#define COMPONENTS_GCM_DRIVER_GCM_MESSAGE_STATUS_H_
+
+namespace gcm {
+
+// Enumeration to be used for describing the status of a GCM message.
+enum GCMMessageStatus {
Peter Beverloo 2017/01/13 01:46:12 Can this be an "enum class"? That would allow us t
harkness 2017/01/19 13:20:42 Done.
+ // 0 reserved for unresolved.
+ GCM_UNRESOLVED = 0,
+ // 1 reserved for success.
+ GCM_SUCCESS = 1,
+
+ // 2 - 99 reserved for the GCM communication error types.
+ GCM_INVALID_SUBTYPE = 2,
+ GCM_ENCRYPTION_FAILURE = 3,
+ GCM_UNKNOWN_MESSAGE_TYPE = 4,
+ GCM_NO_APP_HANDLER = 5,
+ GCM_INVALID_MESSAGE_TAG = 6,
+};
+
+} // namespace gcm
+
+#endif // COMPONENTS_GCM_DRIVER_GCM_MESSAGE_STATUS_H_

Powered by Google App Engine
This is Rietveld 408576698