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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 syntax = "proto2";
2 package copresence;
3 option optimize_for = LITE_RUNTIME;
4 import "data.proto";
5 message PushMessage {
6 enum Type {
7 TYPE_UNKNOWN = 0;
8 SYNC_SETTINGS = 3;
9 OBTAIN_MAC = 5;
10 NOTIFY_MAC = 6;
11 TEST = 7;
12 REPORT = 8;
13 };
14 optional Type type = 1;
15 optional Report report = 9;
16 }
17 message Report {
18 repeated Directive directive = 1;
19 repeated SubscribedMessage subscribed_message = 2;
20 }
OLDNEW
« 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