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

Side by Side Diff: components/copresence/proto/push_message.proto

Issue 2130803002: Deleting the copresence API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 5 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 unified diff | Download patch
« no previous file with comments | « components/copresence/proto/identity.proto ('k') | components/copresence/proto/rpcs.proto » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/identity.proto ('k') | components/copresence/proto/rpcs.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698