Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 // Defines the struct used to describe each of a brand's install modes; see | 5 // Defines the struct used to describe each of a brand's install modes; see |
| 6 // install_modes.h for details. For brands that integrate with Google Update, | 6 // install_modes.h for details. For brands that integrate with Google Update, |
| 7 // each mode also describes a strategy for determining its update channel. | 7 // each mode also describes a strategy for determining its update channel. |
| 8 | 8 |
| 9 #ifndef CHROME_INSTALL_STATIC_INSTALL_CONSTANTS_H_ | 9 #ifndef CHROME_INSTALL_STATIC_INSTALL_CONSTANTS_H_ |
| 10 #define CHROME_INSTALL_STATIC_INSTALL_CONSTANTS_H_ | 10 #define CHROME_INSTALL_STATIC_INSTALL_CONSTANTS_H_ |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 51 // The default name for this mode's update channel. | 51 // The default name for this mode's update channel. |
| 52 const wchar_t* default_channel_name; | 52 const wchar_t* default_channel_name; |
| 53 | 53 |
| 54 // The strategy used to determine the mode's update channel, or UNSUPPORTED if | 54 // The strategy used to determine the mode's update channel, or UNSUPPORTED if |
| 55 // the brand does not integrate with Google Update. | 55 // the brand does not integrate with Google Update. |
| 56 ChannelStrategy channel_strategy; | 56 ChannelStrategy channel_strategy; |
| 57 | 57 |
| 58 // True if this mode supports system-level installs. | 58 // True if this mode supports system-level installs. |
| 59 bool supports_system_level; | 59 bool supports_system_level; |
| 60 | 60 |
| 61 // True if this mode supports multi-install. | 61 // True if this mode supported multi-install. |
|
huangs
2016/12/27 20:04:22
Add "(legacy)"?
grt (UTC plus 2)
2017/01/02 12:58:44
Done.
| |
| 62 bool supports_multi_install; | 62 bool supported_multi_install; |
| 63 }; | 63 }; |
| 64 | 64 |
| 65 } // namespace install_static | 65 } // namespace install_static |
| 66 | 66 |
| 67 #endif // CHROME_INSTALL_STATIC_INSTALL_CONSTANTS_H_ | 67 #endif // CHROME_INSTALL_STATIC_INSTALL_CONSTANTS_H_ |
| OLD | NEW |