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

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

Issue 1439803002: Remove logic for unused foreground auto-launch mode on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@d1_rm_auto_launch_trial
Patch Set: Created 5 years, 1 month 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
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.
12 const char kAutoLaunchChrome[] = "auto-launch-chrome";
13
14 // Install Chrome. 11 // Install Chrome.
15 // Currently this is only required when used in combination with kMultiInstall. 12 // Currently this is only required when used in combination with kMultiInstall.
16 const char kChrome[] = "chrome"; 13 const char kChrome[] = "chrome";
17 14
18 // Install Chrome Frame. 15 // Install Chrome Frame.
19 const char kChromeFrame[] = "chrome-frame"; 16 const char kChromeFrame[] = "chrome-frame";
20 17
21 // Run the installer for Chrome SxS. 18 // Run the installer for Chrome SxS.
22 const char kChromeSxS[] = "chrome-sxs"; 19 const char kChromeSxS[] = "chrome-sxs";
23 20
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 const wchar_t kChromeChannelBeta[] = L"beta"; 251 const wchar_t kChromeChannelBeta[] = L"beta";
255 const wchar_t kChromeChannelStable[] = L""; 252 const wchar_t kChromeChannelStable[] = L"";
256 const wchar_t kChromeChannelStableExplicit[] = L"stable"; 253 const wchar_t kChromeChannelStableExplicit[] = L"stable";
257 254
258 const size_t kMaxAppModelIdLength = 64U; 255 const size_t kMaxAppModelIdLength = 64U;
259 256
260 const char kCourgette[] = "courgette"; 257 const char kCourgette[] = "courgette";
261 const char kBsdiff[] = "bsdiff"; 258 const char kBsdiff[] = "bsdiff";
262 259
263 } // namespace installer 260 } // namespace installer
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698