| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 // Defines all install related constants that need to be used by Chrome as | 5 // Defines all install related constants that need to be used by Chrome as |
| 6 // well as Chrome Installer. | 6 // well as Chrome Installer. |
| 7 | 7 |
| 8 #ifndef CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H__ | 8 #ifndef CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H__ |
| 9 #define CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H__ | 9 #define CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H__ |
| 10 | 10 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 // Run installer in verbose mode. | 61 // Run installer in verbose mode. |
| 62 VERBOSE_LOGGING = 0x1 << 6, | 62 VERBOSE_LOGGING = 0x1 << 6, |
| 63 // Show the EULA dialog. | 63 // Show the EULA dialog. |
| 64 SHOW_EULA_DIALOG = 0x1 << 7, | 64 SHOW_EULA_DIALOG = 0x1 << 7, |
| 65 // Use alternate dekstop shortcut text. | 65 // Use alternate dekstop shortcut text. |
| 66 ALT_DESKTOP_SHORTCUT = 0x1 << 8 | 66 ALT_DESKTOP_SHORTCUT = 0x1 << 8 |
| 67 }; | 67 }; |
| 68 | 68 |
| 69 namespace switches { | 69 namespace switches { |
| 70 extern const wchar_t kCreateAllShortcuts[]; | 70 extern const wchar_t kCreateAllShortcuts[]; |
| 71 extern const wchar_t kDeleteProfile[]; |
| 71 extern const wchar_t kDisableLogging[]; | 72 extern const wchar_t kDisableLogging[]; |
| 72 extern const wchar_t kDoNotLaunchChrome[]; | 73 extern const wchar_t kDoNotLaunchChrome[]; |
| 73 extern const wchar_t kDoNotRemoveSharedItems[]; | 74 extern const wchar_t kDoNotRemoveSharedItems[]; |
| 74 extern const wchar_t kEnableLogging[]; | 75 extern const wchar_t kEnableLogging[]; |
| 75 extern const wchar_t kForceUninstall[]; | 76 extern const wchar_t kForceUninstall[]; |
| 76 extern const wchar_t kInstallArchive[]; | 77 extern const wchar_t kInstallArchive[]; |
| 77 extern const wchar_t kInstallerData[]; | 78 extern const wchar_t kInstallerData[]; |
| 78 extern const wchar_t kLogFile[]; | 79 extern const wchar_t kLogFile[]; |
| 79 extern const wchar_t kMakeChromeDefault[]; | 80 extern const wchar_t kMakeChromeDefault[]; |
| 80 extern const wchar_t kRegisterChromeBrowser[]; | 81 extern const wchar_t kRegisterChromeBrowser[]; |
| (...skipping 14 matching lines...) Expand all Loading... |
| 95 extern const wchar_t kSetupExe[]; | 96 extern const wchar_t kSetupExe[]; |
| 96 extern const wchar_t kInstallerDir[]; | 97 extern const wchar_t kInstallerDir[]; |
| 97 | 98 |
| 98 extern const wchar_t kUninstallStringField[]; | 99 extern const wchar_t kUninstallStringField[]; |
| 99 extern const wchar_t kUninstallDisplayNameField[]; | 100 extern const wchar_t kUninstallDisplayNameField[]; |
| 100 extern const wchar_t kUninstallMetricsName[]; | 101 extern const wchar_t kUninstallMetricsName[]; |
| 101 extern const wchar_t kUninstallInstallationDate[]; | 102 extern const wchar_t kUninstallInstallationDate[]; |
| 102 } // namespace installer_util | 103 } // namespace installer_util |
| 103 | 104 |
| 104 #endif // CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H__ | 105 #endif // CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H__ |
| OLD | NEW |