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 | |
101 // Tells installer to expect to be run as a subsidiary to an MSI. | 97 // Tells installer to expect to be run as a subsidiary to an MSI. |
102 const char kMsi[] = "msi"; | 98 const char kMsi[] = "msi"; |
103 | 99 |
104 // Tells installer to install multiple products specified on the command line. | 100 // Tells installer to install multiple products specified on the command line. |
105 // (e.g. Chrome Frame, Chrome) | 101 // (e.g. Chrome Frame, Chrome) |
106 const char kMultiInstall[] = "multi-install"; | 102 const char kMultiInstall[] = "multi-install"; |
107 | 103 |
108 // Useful only when used with --update-setup-exe, otherwise ignored. It | 104 // Useful only when used with --update-setup-exe, otherwise ignored. It |
109 // specifies the full path where updated setup.exe will be stored. | 105 // specifies the full path where updated setup.exe will be stored. |
110 const char kNewSetupExe[] = "new-setup-exe"; | 106 const char kNewSetupExe[] = "new-setup-exe"; |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
260 const wchar_t kChromeChannelDev[] = L"dev"; | 256 const wchar_t kChromeChannelDev[] = L"dev"; |
261 const wchar_t kChromeChannelBeta[] = L"beta"; | 257 const wchar_t kChromeChannelBeta[] = L"beta"; |
262 const wchar_t kChromeChannelStable[] = L""; | 258 const wchar_t kChromeChannelStable[] = L""; |
263 | 259 |
264 const size_t kMaxAppModelIdLength = 64U; | 260 const size_t kMaxAppModelIdLength = 64U; |
265 | 261 |
266 const char kCourgette[] = "courgette"; | 262 const char kCourgette[] = "courgette"; |
267 const char kBsdiff[] = "bsdiff"; | 263 const char kBsdiff[] = "bsdiff"; |
268 | 264 |
269 } // namespace installer | 265 } // namespace installer |
OLD | NEW |