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

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

Issue 1581473002: Remove base/win/metro.{cc|h} and some associated code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes Created 4 years, 11 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
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 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 const wchar_t kActiveSetupExe[] = L"chrmstp.exe"; 207 const wchar_t kActiveSetupExe[] = L"chrmstp.exe";
208 const wchar_t kAppLauncherGuid[] = L"{FDA71E6F-AC4C-4a00-8B70-9958A68906BF}"; 208 const wchar_t kAppLauncherGuid[] = L"{FDA71E6F-AC4C-4a00-8B70-9958A68906BF}";
209 const wchar_t kChromeDll[] = L"chrome.dll"; 209 const wchar_t kChromeDll[] = L"chrome.dll";
210 const wchar_t kChromeChildDll[] = L"chrome_child.dll"; 210 const wchar_t kChromeChildDll[] = L"chrome_child.dll";
211 const wchar_t kChromeExe[] = L"chrome.exe"; 211 const wchar_t kChromeExe[] = L"chrome.exe";
212 const wchar_t kChromeFrameDll[] = L"npchrome_frame.dll"; 212 const wchar_t kChromeFrameDll[] = L"npchrome_frame.dll";
213 const wchar_t kChromeFrameHelperDll[] = L"chrome_frame_helper.dll"; 213 const wchar_t kChromeFrameHelperDll[] = L"chrome_frame_helper.dll";
214 const wchar_t kChromeFrameHelperExe[] = L"chrome_frame_helper.exe"; 214 const wchar_t kChromeFrameHelperExe[] = L"chrome_frame_helper.exe";
215 const wchar_t kChromeFrameHelperWndClass[] = L"ChromeFrameHelperWindowClass"; 215 const wchar_t kChromeFrameHelperWndClass[] = L"ChromeFrameHelperWindowClass";
216 const wchar_t kChromeLauncherExe[] = L"chrome_launcher.exe"; 216 const wchar_t kChromeLauncherExe[] = L"chrome_launcher.exe";
217 const wchar_t kChromeMetroDll[] = L"metro_driver.dll";
gab 2016/01/12 21:11:04 Also need to remove it from FILES.cfg and chrome.r
scottmg 2016/01/13 20:48:16 Done.
218 const wchar_t kChromeNewExe[] = L"new_chrome.exe"; 217 const wchar_t kChromeNewExe[] = L"new_chrome.exe";
219 const wchar_t kChromeOldExe[] = L"old_chrome.exe"; 218 const wchar_t kChromeOldExe[] = L"old_chrome.exe";
220 const wchar_t kCmdOnOsUpgrade[] = L"on-os-upgrade"; 219 const wchar_t kCmdOnOsUpgrade[] = L"on-os-upgrade";
221 const wchar_t kCmdQuickEnableCf[] = L"quick-enable-cf"; 220 const wchar_t kCmdQuickEnableCf[] = L"quick-enable-cf";
222 const wchar_t kDelegateExecuteExe[] = L"delegate_execute.exe"; 221 const wchar_t kDelegateExecuteExe[] = L"delegate_execute.exe";
223 const wchar_t kEULASentinelFile[] = L"EULA Accepted"; 222 const wchar_t kEULASentinelFile[] = L"EULA Accepted";
224 const wchar_t kGoogleChromeInstallSubDir1[] = L"Google"; 223 const wchar_t kGoogleChromeInstallSubDir1[] = L"Google";
225 const wchar_t kGoogleChromeInstallSubDir2[] = L"Chrome"; 224 const wchar_t kGoogleChromeInstallSubDir2[] = L"Chrome";
226 const wchar_t kInstallBinaryDir[] = L"Application"; 225 const wchar_t kInstallBinaryDir[] = L"Application";
227 const wchar_t kInstallerDir[] = L"Installer"; 226 const wchar_t kInstallerDir[] = L"Installer";
(...skipping 23 matching lines...) Expand all
251 const wchar_t kChromeChannelBeta[] = L"beta"; 250 const wchar_t kChromeChannelBeta[] = L"beta";
252 const wchar_t kChromeChannelStable[] = L""; 251 const wchar_t kChromeChannelStable[] = L"";
253 const wchar_t kChromeChannelStableExplicit[] = L"stable"; 252 const wchar_t kChromeChannelStableExplicit[] = L"stable";
254 253
255 const size_t kMaxAppModelIdLength = 64U; 254 const size_t kMaxAppModelIdLength = 64U;
256 255
257 const char kCourgette[] = "courgette"; 256 const char kCourgette[] = "courgette";
258 const char kBsdiff[] = "bsdiff"; 257 const char kBsdiff[] = "bsdiff";
259 258
260 } // namespace installer 259 } // namespace installer
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698