| Index: chrome/install_static/chromium_install_modes.cc
|
| diff --git a/chrome/install_static/chromium_install_modes.cc b/chrome/install_static/chromium_install_modes.cc
|
| index 7bb5db3e0ef768c2d9a75e82d49a63da0f61d5ff..bb7b67579bffa9a6b2b0c74258d2731b120b24d5 100644
|
| --- a/chrome/install_static/chromium_install_modes.cc
|
| +++ b/chrome/install_static/chromium_install_modes.cc
|
| @@ -22,17 +22,21 @@ const wchar_t kBinariesAppGuid[] = L"";
|
| const wchar_t kBinariesPathName[] = L"Chromium Binaries";
|
|
|
| const InstallConstants kInstallModes[] = {
|
| + // clang-format off
|
| // The primary (and only) install mode for Chromium.
|
| {
|
| sizeof(kInstallModes[0]),
|
| CHROMIUM_INDEX,
|
| + "", // No install switch for the primary install mode.
|
| L"", // Empty install_suffix for the primary install mode.
|
| + L"", // No logo suffix for the primary install mode.
|
| L"", // Empty app_guid since no integraion with Google Update.
|
| L"", // Empty default channel name as above.
|
| ChannelStrategy::UNSUPPORTED,
|
| true, // Supports system-level installs.
|
| true, // Supported multi-install.
|
| },
|
| + // clang-format on
|
| };
|
|
|
| static_assert(_countof(kInstallModes) == NUM_INSTALL_MODES,
|
|
|