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

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

Issue 422593002: Revert 285661 "Remove some dead app host code." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 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
« no previous file with comments | « trunk/src/chrome/installer/util/util_constants.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 // The Active Setup executable will be an identical copy of setup.exe; this is 205 // The Active Setup executable will be an identical copy of setup.exe; this is
206 // necessary because Windows' installer detection heuristics (which include 206 // necessary because Windows' installer detection heuristics (which include
207 // things like process name being "setup.exe") will otherwise force elevation 207 // things like process name being "setup.exe") will otherwise force elevation
208 // for non-admin users when setup.exe is launched. This is mitigated by adding 208 // for non-admin users when setup.exe is launched. This is mitigated by adding
209 // requestedExecutionLevel="asInvoker" to setup.exe's manifest on Vista+, but 209 // requestedExecutionLevel="asInvoker" to setup.exe's manifest on Vista+, but
210 // there is no such manifest entry on Windows XP (which results in 210 // there is no such manifest entry on Windows XP (which results in
211 // crbug.com/166473). 211 // crbug.com/166473).
212 // TODO(gab): Rename setup.exe itself altogether and use the same binary for 212 // TODO(gab): Rename setup.exe itself altogether and use the same binary for
213 // Active Setup. 213 // Active Setup.
214 const wchar_t kActiveSetupExe[] = L"chrmstp.exe"; 214 const wchar_t kActiveSetupExe[] = L"chrmstp.exe";
215 const wchar_t kAppLauncherGuid[] = L"{FDA71E6F-AC4C-4a00-8B70-9958A68906BF}";
216 const wchar_t kChromeAppHostExe[] = L"app_host.exe"; 215 const wchar_t kChromeAppHostExe[] = L"app_host.exe";
217 const wchar_t kChromeDll[] = L"chrome.dll"; 216 const wchar_t kChromeDll[] = L"chrome.dll";
218 const wchar_t kChromeChildDll[] = L"chrome_child.dll"; 217 const wchar_t kChromeChildDll[] = L"chrome_child.dll";
219 const wchar_t kChromeExe[] = L"chrome.exe"; 218 const wchar_t kChromeExe[] = L"chrome.exe";
220 const wchar_t kChromeFrameDll[] = L"npchrome_frame.dll"; 219 const wchar_t kChromeFrameDll[] = L"npchrome_frame.dll";
221 const wchar_t kChromeFrameHelperDll[] = L"chrome_frame_helper.dll"; 220 const wchar_t kChromeFrameHelperDll[] = L"chrome_frame_helper.dll";
222 const wchar_t kChromeFrameHelperExe[] = L"chrome_frame_helper.exe"; 221 const wchar_t kChromeFrameHelperExe[] = L"chrome_frame_helper.exe";
223 const wchar_t kChromeFrameHelperWndClass[] = L"ChromeFrameHelperWindowClass"; 222 const wchar_t kChromeFrameHelperWndClass[] = L"ChromeFrameHelperWindowClass";
224 const wchar_t kChromeLauncherExe[] = L"chrome_launcher.exe"; 223 const wchar_t kChromeLauncherExe[] = L"chrome_launcher.exe";
225 const wchar_t kChromeMetroDll[] = L"metro_driver.dll"; 224 const wchar_t kChromeMetroDll[] = L"metro_driver.dll";
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 const wchar_t kChromeChannelDev[] = L"dev"; 262 const wchar_t kChromeChannelDev[] = L"dev";
264 const wchar_t kChromeChannelBeta[] = L"beta"; 263 const wchar_t kChromeChannelBeta[] = L"beta";
265 const wchar_t kChromeChannelStable[] = L""; 264 const wchar_t kChromeChannelStable[] = L"";
266 265
267 const size_t kMaxAppModelIdLength = 64U; 266 const size_t kMaxAppModelIdLength = 64U;
268 267
269 const char kCourgette[] = "courgette"; 268 const char kCourgette[] = "courgette";
270 const char kBsdiff[] = "bsdiff"; 269 const char kBsdiff[] = "bsdiff";
271 270
272 } // namespace installer 271 } // namespace installer
OLDNEW
« no previous file with comments | « trunk/src/chrome/installer/util/util_constants.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698