OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 syntax = "proto2"; | 5 syntax = "proto2"; |
6 | 6 |
7 option optimize_for = LITE_RUNTIME; | 7 option optimize_for = LITE_RUNTIME; |
8 | 8 |
9 package content; | 9 package content; |
10 | 10 |
(...skipping 17 matching lines...) Expand all Loading... |
28 RIGHT_TO_LEFT = 1; | 28 RIGHT_TO_LEFT = 1; |
29 } | 29 } |
30 | 30 |
31 optional string title = 1; | 31 optional string title = 1; |
32 optional Direction direction = 2; | 32 optional Direction direction = 2; |
33 optional string lang = 3; | 33 optional string lang = 3; |
34 optional string body = 4; | 34 optional string body = 4; |
35 optional string tag = 5; | 35 optional string tag = 5; |
36 optional string icon = 6; | 36 optional string icon = 6; |
37 optional bool silent = 7; | 37 optional bool silent = 7; |
38 optional bytes data = 8; | |
39 } | 38 } |
40 | 39 |
41 optional NotificationData notification_data = 4; | 40 optional NotificationData notification_data = 4; |
42 } | 41 } |
OLD | NEW |