| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chrome/test/mini_installer_test/mini_installer_test_constants.h" | |
| 6 | |
| 7 namespace mini_installer_constants { | |
| 8 | |
| 9 #if defined(GOOGLE_CHROME_BUILD) | |
| 10 const wchar_t kChromeAppDir[] = L"Google\\Chrome\\Application\\"; | |
| 11 const wchar_t kChromeBuildType[] = L"Google Chrome"; | |
| 12 const wchar_t kChromeFirstRunUI[] = L"Welcome to Google Chrome"; | |
| 13 const wchar_t kChromeLaunchShortcut[] = L"Google Chrome.lnk"; | |
| 14 const wchar_t kChromeUninstallShortcut[] = L"Uninstall Google Chrome.lnk"; | |
| 15 const wchar_t kChromeUninstallDialogName[] = L"Uninstall Google Chrome"; | |
| 16 #else | |
| 17 const wchar_t kChromeAppDir[] = L"Chromium\\Application\\"; | |
| 18 const wchar_t kChromeBuildType[] = L"Chromium"; | |
| 19 const wchar_t kChromeFirstRunUI[] = L"Welcome to Chromium"; | |
| 20 const wchar_t kChromeLaunchShortcut[] = L"Chromium.lnk"; | |
| 21 const wchar_t kChromeUninstallShortcut[] = L"Uninstall Chromium.lnk"; | |
| 22 const wchar_t kChromeUninstallDialogName[] = L"Uninstall Chromium"; | |
| 23 #endif | |
| 24 const wchar_t kBrowserTabName[] = L"New Tab - Google Chrome"; | |
| 25 const wchar_t kChromeFrameAppDir[] = L"Google\\Chrome Frame\\Application\\"; | |
| 26 const wchar_t kChromeFrameAppName[] = L"Google Chrome Frame"; | |
| 27 const wchar_t kChromeFrameProductName[] = L"Chrome Frame"; | |
| 28 const wchar_t kChromeMiniInstallerExecutable[] = L"mini_installer.exe"; | |
| 29 const wchar_t kChromeMetaInstallerExecutable[] = L"chrome_installer.exe"; | |
| 30 const wchar_t kChromeProductName[] = L"Chrome"; | |
| 31 const wchar_t kChromeSetupExecutable[] = L"setup.exe"; | |
| 32 const wchar_t kChromeUserDataBackupDir[] = L"User Data Copy"; | |
| 33 const wchar_t kChromeUserDataDir[] = L"User Data"; | |
| 34 const wchar_t kDiffInstall[] = L"Diff"; | |
| 35 const wchar_t kDiffInstallerPattern[] = L"_from_"; | |
| 36 const wchar_t kFullInstallerPattern[] = L"_chrome_installer"; | |
| 37 const wchar_t kGoogleUpdateExecutable[] = L"GoogleUpdate.exe"; | |
| 38 const wchar_t kIEExecutable[] = L"iexplore.exe"; | |
| 39 const wchar_t kInstallerWindow[] = L"Chrome Installer"; | |
| 40 const wchar_t kStandaloneInstaller[] = L"ChromeSetupTest.exe"; | |
| 41 const wchar_t kUntaggedInstallerPattern[] = L"ChromeStandaloneSetup_"; | |
| 42 const wchar_t kWinFolder[] = L"win"; | |
| 43 | |
| 44 | |
| 45 const wchar_t kDevChannelBuild[] = L"10.0."; | |
| 46 const wchar_t kStableChannelBuild[] = L"8.0."; | |
| 47 const wchar_t kFullInstall[] = L"Full"; | |
| 48 | |
| 49 | |
| 50 const wchar_t kIELocation[] = L"Internet Explorer\\"; | |
| 51 const wchar_t kIEProcessName[] = L"IEXPLORE.EXE"; | |
| 52 | |
| 53 // Google Chrome meta installer location. | |
| 54 const wchar_t kChromeMetaInstallerExe[] = | |
| 55 L"\\\\172.23.44.61\\shared\\chrome_autotest\\beta_build\\ChromeSetup.exe"; | |
| 56 const wchar_t kChromeStandAloneInstallerLocation[] = | |
| 57 L"\\\\filer\\shares\\chromeclient\\builds\\ChromeSigning"; | |
| 58 const wchar_t kChromeApplyTagExe[] = | |
| 59 L"\\\\filer\\shares\\googleclient\\save\\builds\\Omaha\\1.3.21.57" | |
| 60 L"\\opt\\tests\\ApplyTag.exe"; | |
| 61 const wchar_t kChromeApplyTagParameters[] = | |
| 62 L"\"appguid={8A69D345-D564-463C-AFF1-A69D9E530F96}" | |
| 63 L"&appname=Chrome&needsadmin=false\""; | |
| 64 const wchar_t kChromeInstallersLocation[] = | |
| 65 L"\\\\172.24.6.7\\shares\\chromeclient\\builds\\chrome\\"; | |
| 66 | |
| 67 } // namespace mini_installer_constants | |
| 68 | |
| 69 namespace switches { | |
| 70 // Help. | |
| 71 extern const char kInstallerHelp[] = "help"; | |
| 72 | |
| 73 // Back up the profile. | |
| 74 const char kInstallerTestBackup[] = "backup"; | |
| 75 | |
| 76 // Control the build under test. | |
| 77 const char kInstallerTestBuild[] = "build"; | |
| 78 | |
| 79 // Force the installer tests to run, regardless of the current platform. | |
| 80 const char kInstallerTestForce[] = "force"; | |
| 81 } // namespace switches | |
| OLD | NEW |