| 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 #include "chrome/tools/disable_outdated_build_detector/constants.h" | |
| 6 | |
| 7 namespace switches { | |
| 8 | |
| 9 const wchar_t kMultiInstall[] = L"multi-install"; | |
| 10 const wchar_t kSystemLevel[] = L"system-level"; | |
| 11 | |
| 12 } // namespace switches | |
| 13 | |
| 14 namespace env { | |
| 15 | |
| 16 // The presence of this environment variable with a value of 1 implies that the | |
| 17 // tool should run as a system installation regardless of what is on the command | |
| 18 // line. | |
| 19 const wchar_t kGoogleUpdateIsMachine[] = L"GoogleUpdateIsMachine"; | |
| 20 | |
| 21 } // namespace env | |
| 22 | |
| 23 // The new brand to which organic installs will be switched. | |
| 24 const wchar_t kAOHY[] = L"AOHY"; | |
| 25 | |
| 26 // The names of registry values within a product's ClientState key. | |
| 27 const wchar_t kBrand[] = L"brand"; | |
| 28 const wchar_t kInstallerResult[] = L"InstallerResult"; | |
| 29 const wchar_t kInstallerError[] = L"InstallerError"; | |
| 30 const wchar_t kInstallerExtraCode1[] = L"InstallerExtraCode1"; | |
| 31 const wchar_t kUninstallArguments[] = L"UninstallArguments"; | |
| OLD | NEW |