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 apps. | 5 // Sync protocol datatype extension for apps. |
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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 | 68 |
69 // This describes how the extension should be launched. | 69 // This describes how the extension should be launched. |
70 optional LaunchType launch_type = 5; | 70 optional LaunchType launch_type = 5; |
71 | 71 |
72 // This is the url of a bookmark app. If this exists, the app is a bookmark | 72 // This is the url of a bookmark app. If this exists, the app is a bookmark |
73 // app. | 73 // app. |
74 optional string bookmark_app_url = 6; | 74 optional string bookmark_app_url = 6; |
75 | 75 |
76 // This is the description of a bookmark app. | 76 // This is the description of a bookmark app. |
77 optional string bookmark_app_description = 7; | 77 optional string bookmark_app_description = 7; |
| 78 |
| 79 // This is the color to use when generating bookmark app icons. The string is |
| 80 // in #rrggbb or #rgb syntax, e.g. #d8d8d8. |
| 81 optional string bookmark_app_icon_color = 8; |
78 } | 82 } |
OLD | NEW |