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

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: A basic working app host installer/uninstaller. 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";
173 const wchar_t kCmdQuickEnableCf[] = L"quick-enable-cf"; 177 const wchar_t kCmdQuickEnableCf[] = L"quick-enable-cf";
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 // Chrome channel display names. 211 // Chrome channel display names.
208 const wchar_t kChromeChannelUnknown[] = L"unknown"; 212 const wchar_t kChromeChannelUnknown[] = L"unknown";
209 const wchar_t kChromeChannelCanary[] = L"canary"; 213 const wchar_t kChromeChannelCanary[] = L"canary";
210 const wchar_t kChromeChannelDev[] = L"dev"; 214 const wchar_t kChromeChannelDev[] = L"dev";
211 const wchar_t kChromeChannelBeta[] = L"beta"; 215 const wchar_t kChromeChannelBeta[] = L"beta";
212 const wchar_t kChromeChannelStable[] = L""; 216 const wchar_t kChromeChannelStable[] = L"";
213 217
214 const size_t kMaxAppModelIdLength = 64U; 218 const size_t kMaxAppModelIdLength = 64U;
215 219
216 } // namespace installer 220 } // namespace installer
OLDNEW
« chrome/installer/util/prebuild/create_string_rc.py ('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