| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // Sync protocol datatype extension for app notifications. | 5 // Sync protocol datatype extension for app notifications. |
| 6 | 6 |
| 7 // Update proto_value_conversions{.h,.cc,_unittest.cc} if you change | 7 // Update proto_value_conversions{.h,.cc,_unittest.cc} if you change |
| 8 // any fields in this file. | 8 // any fields in this file. |
| 9 | 9 |
| 10 syntax = "proto2"; | 10 syntax = "proto2"; |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 | 35 |
| 36 // Payload - these fields are visible to the user content is defined by the | 36 // Payload - these fields are visible to the user content is defined by the |
| 37 // app. The fields are described in: | 37 // app. The fields are described in: |
| 38 // chrome/browser/extensions/app_notification.h | 38 // chrome/browser/extensions/app_notification.h |
| 39 optional string title = 4; | 39 optional string title = 4; |
| 40 optional string body_text = 5; | 40 optional string body_text = 5; |
| 41 optional string link_url = 6; | 41 optional string link_url = 6; |
| 42 optional string link_text = 7; | 42 optional string link_text = 7; |
| 43 } | 43 } |
| 44 | 44 |
| OLD | NEW |