| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // Constants related to the Chrome mini installer testing. | 5 // Constants related to the Chrome mini installer testing. |
| 6 | 6 |
| 7 #ifndef CHROME_TEST_MINI_INSTALLER_TEST_MINI_INSTALLER_TEST_CONSTANTS_H__ | 7 #ifndef CHROME_TEST_MINI_INSTALLER_TEST_MINI_INSTALLER_TEST_CONSTANTS_H__ |
| 8 #define CHROME_TEST_MINI_INSTALLER_TEST_MINI_INSTALLER_TEST_CONSTANTS_H__ | 8 #define CHROME_TEST_MINI_INSTALLER_TEST_MINI_INSTALLER_TEST_CONSTANTS_H__ |
| 9 | 9 |
| 10 namespace mini_installer_constants { | 10 namespace mini_installer_constants { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 extern const wchar_t kChromeUserDataDir[]; | 21 extern const wchar_t kChromeUserDataDir[]; |
| 22 extern const wchar_t kDiffInstall[]; | 22 extern const wchar_t kDiffInstall[]; |
| 23 extern const wchar_t kDiffInstallerPattern[]; | 23 extern const wchar_t kDiffInstallerPattern[]; |
| 24 extern const wchar_t kFullInstall[]; | 24 extern const wchar_t kFullInstall[]; |
| 25 extern const wchar_t kFullInstallerPattern[]; | 25 extern const wchar_t kFullInstallerPattern[]; |
| 26 extern const wchar_t kGoogleUpdateExecutable[]; | 26 extern const wchar_t kGoogleUpdateExecutable[]; |
| 27 extern const wchar_t kIEExecutable[]; | 27 extern const wchar_t kIEExecutable[]; |
| 28 extern const wchar_t kWinFolder[]; | 28 extern const wchar_t kWinFolder[]; |
| 29 | 29 |
| 30 // Window names. | 30 // Window names. |
| 31 extern const wchar_t kBrowserAppName[]; | |
| 32 extern const wchar_t kBrowserTabName[]; | 31 extern const wchar_t kBrowserTabName[]; |
| 33 extern const wchar_t kChromeBuildType[]; | 32 extern const wchar_t kChromeBuildType[]; |
| 34 extern const wchar_t kChromeFrameAppName[]; | 33 extern const wchar_t kChromeFrameAppName[]; |
| 35 extern const wchar_t kChromeFirstRunUI[]; | 34 extern const wchar_t kChromeFirstRunUI[]; |
| 36 extern const wchar_t kChromeUninstallDialogName[]; | 35 extern const wchar_t kChromeUninstallDialogName[]; |
| 37 extern const wchar_t kInstallerWindow[]; | 36 extern const wchar_t kInstallerWindow[]; |
| 38 | 37 |
| 39 // Shortcut names | 38 // Shortcut names |
| 40 extern const wchar_t kChromeLaunchShortcut[]; | 39 extern const wchar_t kChromeLaunchShortcut[]; |
| 41 extern const wchar_t kChromeUninstallShortcut[]; | 40 extern const wchar_t kChromeUninstallShortcut[]; |
| (...skipping 19 matching lines...) Expand all Loading... |
| 61 | 60 |
| 62 // Command line switches. | 61 // Command line switches. |
| 63 namespace switches { | 62 namespace switches { |
| 64 extern const char kInstallerHelp[]; | 63 extern const char kInstallerHelp[]; |
| 65 extern const char kInstallerTestBackup[]; | 64 extern const char kInstallerTestBackup[]; |
| 66 extern const char kInstallerTestBuild[]; | 65 extern const char kInstallerTestBuild[]; |
| 67 extern const char kInstallerTestForce[]; | 66 extern const char kInstallerTestForce[]; |
| 68 } // namespace switches | 67 } // namespace switches |
| 69 | 68 |
| 70 #endif // CHROME_TEST_MINI_INSTALLER_TEST_MINI_INSTALLER_TEST_CONSTANTS_H__ | 69 #endif // CHROME_TEST_MINI_INSTALLER_TEST_MINI_INSTALLER_TEST_CONSTANTS_H__ |
| OLD | NEW |