Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(399)

Side by Side Diff: chrome/installer/util/util_constants.cc

Issue 10665002: Implement installation of the Chrome App Host. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix unittests. Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
11 // Whether to set Chrome to launch at computer startup. 11 // Whether to set Chrome to launch at computer startup.
12 const char kAutoLaunchChrome[] = "auto-launch-chrome"; 12 const char kAutoLaunchChrome[] = "auto-launch-chrome";
13 13
14 // Install Chrome. 14 // Install Chrome.
15 // Currently this is only required when used in combination with kMultiInstall. 15 // Currently this is only required when used in combination with kMultiInstall.
16 const char kChrome[] = "chrome"; 16 const char kChrome[] = "chrome";
17 17
18 // Install Chrome App Host.
19 const char kChromeAppHost[] = "app-host";
20
18 // Install Chrome Frame. 21 // Install Chrome Frame.
19 const char kChromeFrame[] = "chrome-frame"; 22 const char kChromeFrame[] = "chrome-frame";
20 23
21 // Installs Chrome Frame from an already installed multi-install of Chrome. 24 // Installs Chrome Frame from an already installed multi-install of Chrome.
22 const char kChromeFrameQuickEnable[] = "quick-enable-cf"; 25 const char kChromeFrameQuickEnable[] = "quick-enable-cf";
23 26
24 // When installing Chrome Frame, install it in ready mode. 27 // When installing Chrome Frame, install it in ready mode.
25 // If --chrome-frame is not on the command line, this switch has no effect. 28 // If --chrome-frame is not on the command line, this switch has no effect.
26 const char kChromeFrameReadyMode[] = "ready-mode"; 29 const char kChromeFrameReadyMode[] = "ready-mode";
27 30
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 157
155 // The group this experiment belongs to. 158 // The group this experiment belongs to.
156 const char kExperimentGroup[] = "experiment-group"; 159 const char kExperimentGroup[] = "experiment-group";
157 160
158 // A handle value of the key to write the results of the toast experiment 161 // A handle value of the key to write the results of the toast experiment
159 // to. See DuplicateGoogleUpdateSystemClientKey for details. 162 // to. See DuplicateGoogleUpdateSystemClientKey for details.
160 const char kToastResultsKey[] = "toast-results-key"; 163 const char kToastResultsKey[] = "toast-results-key";
161 164
162 } // namespace switches 165 } // namespace switches
163 166
167 const wchar_t kChromeAppHostExe[] = L"app_host.exe";
164 const wchar_t kChromeDll[] = L"chrome.dll"; 168 const wchar_t kChromeDll[] = L"chrome.dll";
165 const wchar_t kChromeExe[] = L"chrome.exe"; 169 const wchar_t kChromeExe[] = L"chrome.exe";
166 const wchar_t kChromeFrameDll[] = L"npchrome_frame.dll"; 170 const wchar_t kChromeFrameDll[] = L"npchrome_frame.dll";
167 const wchar_t kChromeFrameHelperExe[] = L"chrome_frame_helper.exe"; 171 const wchar_t kChromeFrameHelperExe[] = L"chrome_frame_helper.exe";
168 const wchar_t kChromeFrameHelperWndClass[] = L"ChromeFrameHelperWindowClass"; 172 const wchar_t kChromeFrameHelperWndClass[] = L"ChromeFrameHelperWindowClass";
169 const wchar_t kChromeFrameReadyModeField[] = L"ChromeFrameReadyMode"; 173 const wchar_t kChromeFrameReadyModeField[] = L"ChromeFrameReadyMode";
170 const wchar_t kChromeLauncherExe[] = L"chrome_launcher.exe"; 174 const wchar_t kChromeLauncherExe[] = L"chrome_launcher.exe";
171 const wchar_t kChromeNewExe[] = L"new_chrome.exe"; 175 const wchar_t kChromeNewExe[] = L"new_chrome.exe";
172 const wchar_t kChromeOldExe[] = L"old_chrome.exe"; 176 const wchar_t kChromeOldExe[] = L"old_chrome.exe";
177 const wchar_t kCmdInstallApp[] = L"install-application";
178 const wchar_t kCmdQuickEnableApplicationHost[] =
179 L"quick-enable-application-host";
173 const wchar_t kCmdQuickEnableCf[] = L"quick-enable-cf"; 180 const wchar_t kCmdQuickEnableCf[] = L"quick-enable-cf";
174 const wchar_t kDelegateExecuteExe[] = L"delegate_execute.exe"; 181 const wchar_t kDelegateExecuteExe[] = L"delegate_execute.exe";
175 const wchar_t kGoogleChromeInstallSubDir1[] = L"Google"; 182 const wchar_t kGoogleChromeInstallSubDir1[] = L"Google";
176 const wchar_t kGoogleChromeInstallSubDir2[] = L"Chrome"; 183 const wchar_t kGoogleChromeInstallSubDir2[] = L"Chrome";
177 const wchar_t kInstallBinaryDir[] = L"Application"; 184 const wchar_t kInstallBinaryDir[] = L"Application";
178 const wchar_t kInstallerDir[] = L"Installer"; 185 const wchar_t kInstallerDir[] = L"Installer";
179 const wchar_t kInstallTempDir[] = L"Temp"; 186 const wchar_t kInstallTempDir[] = L"Temp";
180 const wchar_t kInstallUserDataDir[] = L"User Data"; 187 const wchar_t kInstallUserDataDir[] = L"User Data";
181 const wchar_t kNaClExe[] = L"nacl64.exe"; 188 const wchar_t kNaClExe[] = L"nacl64.exe";
182 // The CLSID of the proxy stub OLE Automation universal marshaler, the default 189 // The CLSID of the proxy stub OLE Automation universal marshaler, the default
(...skipping 24 matching lines...) Expand all
207 // Chrome channel display names. 214 // Chrome channel display names.
208 const wchar_t kChromeChannelUnknown[] = L"unknown"; 215 const wchar_t kChromeChannelUnknown[] = L"unknown";
209 const wchar_t kChromeChannelCanary[] = L"canary"; 216 const wchar_t kChromeChannelCanary[] = L"canary";
210 const wchar_t kChromeChannelDev[] = L"dev"; 217 const wchar_t kChromeChannelDev[] = L"dev";
211 const wchar_t kChromeChannelBeta[] = L"beta"; 218 const wchar_t kChromeChannelBeta[] = L"beta";
212 const wchar_t kChromeChannelStable[] = L""; 219 const wchar_t kChromeChannelStable[] = L"";
213 220
214 const size_t kMaxAppModelIdLength = 64U; 221 const size_t kMaxAppModelIdLength = 64U;
215 222
216 } // namespace installer 223 } // namespace installer
OLDNEW
« chrome/installer/setup/uninstall.cc ('K') | « chrome/installer/util/util_constants.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698