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

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

Issue 10836247: Refactor ShellUtil shortcut code -- single multi-purpose methods as opposed to many slighlty diffe… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: respect microsoft's definition of correct C++ Created 8 years, 2 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 | « 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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 L"quick-enable-application-host"; 195 L"quick-enable-application-host";
196 const wchar_t kCmdQuickEnableCf[] = L"quick-enable-cf"; 196 const wchar_t kCmdQuickEnableCf[] = L"quick-enable-cf";
197 const wchar_t kDelegateExecuteExe[] = L"delegate_execute.exe"; 197 const wchar_t kDelegateExecuteExe[] = L"delegate_execute.exe";
198 const char kEULASentinelFile[] = "EULA Accepted"; 198 const char kEULASentinelFile[] = "EULA Accepted";
199 const wchar_t kGoogleChromeInstallSubDir1[] = L"Google"; 199 const wchar_t kGoogleChromeInstallSubDir1[] = L"Google";
200 const wchar_t kGoogleChromeInstallSubDir2[] = L"Chrome"; 200 const wchar_t kGoogleChromeInstallSubDir2[] = L"Chrome";
201 const wchar_t kInstallBinaryDir[] = L"Application"; 201 const wchar_t kInstallBinaryDir[] = L"Application";
202 const wchar_t kInstallerDir[] = L"Installer"; 202 const wchar_t kInstallerDir[] = L"Installer";
203 const wchar_t kInstallTempDir[] = L"Temp"; 203 const wchar_t kInstallTempDir[] = L"Temp";
204 const wchar_t kInstallUserDataDir[] = L"User Data"; 204 const wchar_t kInstallUserDataDir[] = L"User Data";
205 const wchar_t kLnkExt[] = L".lnk";
205 const wchar_t kNaClExe[] = L"nacl64.exe"; 206 const wchar_t kNaClExe[] = L"nacl64.exe";
206 const wchar_t kSetupExe[] = L"setup.exe"; 207 const wchar_t kSetupExe[] = L"setup.exe";
207 const wchar_t kSxSSuffix[] = L" SxS"; 208 const wchar_t kSxSSuffix[] = L" SxS";
208 const wchar_t kUninstallStringField[] = L"UninstallString"; 209 const wchar_t kUninstallStringField[] = L"UninstallString";
209 const wchar_t kUninstallArgumentsField[] = L"UninstallArguments"; 210 const wchar_t kUninstallArgumentsField[] = L"UninstallArguments";
210 const wchar_t kUninstallDisplayNameField[] = L"DisplayName"; 211 const wchar_t kUninstallDisplayNameField[] = L"DisplayName";
211 const char kUninstallMetricsName[] = "uninstall_metrics"; 212 const char kUninstallMetricsName[] = "uninstall_metrics";
212 const wchar_t kUninstallInstallationDate[] = L"installation_date"; 213 const wchar_t kUninstallInstallationDate[] = L"installation_date";
213 const wchar_t kInstallerError[] = L"InstallerError"; 214 const wchar_t kInstallerError[] = L"InstallerError";
214 const wchar_t kInstallerExtraCode1[] = L"InstallerExtraCode1"; 215 const wchar_t kInstallerExtraCode1[] = L"InstallerExtraCode1";
(...skipping 13 matching lines...) Expand all
228 // Chrome channel display names. 229 // Chrome channel display names.
229 const wchar_t kChromeChannelUnknown[] = L"unknown"; 230 const wchar_t kChromeChannelUnknown[] = L"unknown";
230 const wchar_t kChromeChannelCanary[] = L"canary"; 231 const wchar_t kChromeChannelCanary[] = L"canary";
231 const wchar_t kChromeChannelDev[] = L"dev"; 232 const wchar_t kChromeChannelDev[] = L"dev";
232 const wchar_t kChromeChannelBeta[] = L"beta"; 233 const wchar_t kChromeChannelBeta[] = L"beta";
233 const wchar_t kChromeChannelStable[] = L""; 234 const wchar_t kChromeChannelStable[] = L"";
234 235
235 const size_t kMaxAppModelIdLength = 64U; 236 const size_t kMaxAppModelIdLength = 64U;
236 237
237 } // namespace installer 238 } // namespace installer
OLDNEW
« no previous file with comments | « chrome/installer/util/util_constants.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698