Chromium Code Reviews| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 61 // This enum should be kept in sync with extensions::LaunchType. | 61 // This enum should be kept in sync with extensions::LaunchType. |
| 62 enum LaunchType { | 62 enum LaunchType { |
| 63 PINNED = 0; | 63 PINNED = 0; |
| 64 REGULAR = 1; | 64 REGULAR = 1; |
| 65 FULLSCREEN = 2; | 65 FULLSCREEN = 2; |
| 66 WINDOW = 3; | 66 WINDOW = 3; |
| 67 } | 67 } |
| 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 | |
| 72 // This is the url of a bookmark app. If this exists, the app is a bookmark | |
| 73 // app. | |
| 74 optional string bookmark_app_url = 6; | |
| 75 | |
| 76 // This is the description of a bookmark app. | |
| 77 optional string bookmark_app_description = 7; | |
|
Nicolas Zea
2014/04/14 21:46:11
Is this something that will change with different
calamity
2014/04/15 01:06:04
Hmm. That's a good point. I was also thinking of s
| |
| 71 } | 78 } |
| OLD | NEW |