| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 // Brand-specific constants and install modes for Chromium. | |
| 6 | |
| 7 #include <stdlib.h> | |
| 8 | |
| 9 #include "chrome/install_static/install_modes.h" | |
| 10 | |
| 11 namespace install_static { | |
| 12 | |
| 13 const wchar_t kCompanyPathName[] = L""; | |
| 14 | |
| 15 const wchar_t kProductPathName[] = L"Chromium"; | |
| 16 | |
| 17 const size_t kProductPathNameLength = _countof(kProductPathName) - 1; | |
| 18 | |
| 19 // No integration with Google Update, so no app GUID. | |
| 20 const wchar_t kBinariesAppGuid[] = L""; | |
| 21 | |
| 22 const wchar_t kBinariesPathName[] = L"Chromium Binaries"; | |
| 23 | |
| 24 const InstallConstants kInstallModes[] = { | |
| 25 // The primary (and only) install mode for Chromium. | |
| 26 { | |
| 27 sizeof(kInstallModes[0]), | |
| 28 CHROMIUM_INDEX, | |
| 29 L"", // Empty install_suffix for the primary install mode. | |
| 30 L"", // Empty app_guid since no integraion with Google Update. | |
| 31 L"", // Empty default channel name as above. | |
| 32 ChannelStrategy::UNSUPPORTED, | |
| 33 true, // Supports system-level installs. | |
| 34 true, // Supports multi-install. | |
| 35 }, | |
| 36 }; | |
| 37 | |
| 38 static_assert(_countof(kInstallModes) == NUM_INSTALL_MODES, | |
| 39 "Imbalance between kInstallModes and InstallConstantIndex"); | |
| 40 | |
| 41 } // namespace install_static | |
| OLD | NEW |