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

Unified Diff: components/copresence/proto/push_message.proto

Issue 712833002: Undoing revert, cl is not the cause of gcm crash on canary. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2214
Patch Set: Created 6 years, 1 month 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 | « components/copresence/proto/data.proto ('k') | components/copresence/public/copresence_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/copresence/proto/push_message.proto
diff --git a/components/copresence/proto/push_message.proto b/components/copresence/proto/push_message.proto
new file mode 100644
index 0000000000000000000000000000000000000000..239e88525b11e853045ba146603b6ea6fe9b5a06
--- /dev/null
+++ b/components/copresence/proto/push_message.proto
@@ -0,0 +1,20 @@
+syntax = "proto2";
+package copresence;
+option optimize_for = LITE_RUNTIME;
+import "data.proto";
+message PushMessage {
+ enum Type {
+ TYPE_UNKNOWN = 0;
+ SYNC_SETTINGS = 3;
+ OBTAIN_MAC = 5;
+ NOTIFY_MAC = 6;
+ TEST = 7;
+ REPORT = 8;
+ };
+ optional Type type = 1;
+ optional Report report = 9;
+}
+message Report {
+ repeated Directive directive = 1;
+ repeated SubscribedMessage subscribed_message = 2;
+}
« no previous file with comments | « components/copresence/proto/data.proto ('k') | components/copresence/public/copresence_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698