| 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 #include "chrome/installer/util/util_constants.h" | 5 #include "chrome/installer/util/util_constants.h" |
| 6 | 6 |
| 7 namespace installer { | 7 namespace installer { |
| 8 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 | 87 |
| 88 // If present, specify file path to write logging info. | 88 // If present, specify file path to write logging info. |
| 89 const char kLogFile[] = "log-file"; | 89 const char kLogFile[] = "log-file"; |
| 90 | 90 |
| 91 // Register Chrome as default browser on the system. Usually this will require | 91 // Register Chrome as default browser on the system. Usually this will require |
| 92 // that setup is running as admin. If running as admin we try to register | 92 // that setup is running as admin. If running as admin we try to register |
| 93 // as default browser at system level, if running as non-admin we try to | 93 // as default browser at system level, if running as non-admin we try to |
| 94 // register as default browser only for the current user. | 94 // register as default browser only for the current user. |
| 95 const char kMakeChromeDefault[] = "make-chrome-default"; | 95 const char kMakeChromeDefault[] = "make-chrome-default"; |
| 96 | 96 |
| 97 // Migrate multi-install Chrome Frame to single-install. Use in conjunction with |
| 98 // --uncompressed-archive. |
| 99 const char kMigrateChromeFrame[] = "migrate-chrome-frame"; |
| 100 |
| 97 // Tells installer to expect to be run as a subsidiary to an MSI. | 101 // Tells installer to expect to be run as a subsidiary to an MSI. |
| 98 const char kMsi[] = "msi"; | 102 const char kMsi[] = "msi"; |
| 99 | 103 |
| 100 // Tells installer to install multiple products specified on the command line. | 104 // Tells installer to install multiple products specified on the command line. |
| 101 // (e.g. Chrome Frame, Chrome) | 105 // (e.g. Chrome Frame, Chrome) |
| 102 const char kMultiInstall[] = "multi-install"; | 106 const char kMultiInstall[] = "multi-install"; |
| 103 | 107 |
| 104 // Useful only when used with --update-setup-exe, otherwise ignored. It | 108 // Useful only when used with --update-setup-exe, otherwise ignored. It |
| 105 // specifies the full path where updated setup.exe will be stored. | 109 // specifies the full path where updated setup.exe will be stored. |
| 106 const char kNewSetupExe[] = "new-setup-exe"; | 110 const char kNewSetupExe[] = "new-setup-exe"; |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 const wchar_t kChromeChannelDev[] = L"dev"; | 260 const wchar_t kChromeChannelDev[] = L"dev"; |
| 257 const wchar_t kChromeChannelBeta[] = L"beta"; | 261 const wchar_t kChromeChannelBeta[] = L"beta"; |
| 258 const wchar_t kChromeChannelStable[] = L""; | 262 const wchar_t kChromeChannelStable[] = L""; |
| 259 | 263 |
| 260 const size_t kMaxAppModelIdLength = 64U; | 264 const size_t kMaxAppModelIdLength = 64U; |
| 261 | 265 |
| 262 const char kCourgette[] = "courgette"; | 266 const char kCourgette[] = "courgette"; |
| 263 const char kBsdiff[] = "bsdiff"; | 267 const char kBsdiff[] = "bsdiff"; |
| 264 | 268 |
| 265 } // namespace installer | 269 } // namespace installer |
| OLD | NEW |