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

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 1479283002: Reland: Crashpad Windows: Use the Crashpad client instead of Breakpad on Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: with crashpad 1f3ced1846f3956e678c562c90e0d6c970543617 Created 5 years 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
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/crash_keys.cc » ('j') | 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/common/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 9
10 namespace switches { 10 namespace switches {
(...skipping 1220 matching lines...) Expand 10 before | Expand all | Expand 10 after
1231 const char kRelauncherProcess[] = "relauncher"; 1231 const char kRelauncherProcess[] = "relauncher";
1232 1232
1233 // When switches::kProcessType is switches::kRelauncherProcess, if this switch 1233 // When switches::kProcessType is switches::kRelauncherProcess, if this switch
1234 // is also present, the relauncher process will unmount and eject a mounted disk 1234 // is also present, the relauncher process will unmount and eject a mounted disk
1235 // image and move its disk image file to the trash. The argument's value must 1235 // image and move its disk image file to the trash. The argument's value must
1236 // be a BSD device name of the form "diskN" or "diskNsM". 1236 // be a BSD device name of the form "diskN" or "diskNsM".
1237 const char kRelauncherProcessDMGDevice[] = "dmg-device"; 1237 const char kRelauncherProcessDMGDevice[] = "dmg-device";
1238 #endif // defined(OS_MACOSX) 1238 #endif // defined(OS_MACOSX)
1239 1239
1240 #if defined(OS_WIN) 1240 #if defined(OS_WIN)
1241 // A process type (switches::kProcessType) that indicates chrome.exe is being
1242 // launched as crashpad_handler. This is only used on Windows. We bundle the
1243 // handler into chrome.exe on Windows because there is high probability of a
1244 // "new" .exe being blocked or interfered with by application firewalls, AV
1245 // software, etc. On other platforms, crashpad_handler is a standalone
1246 // executable.
1247 const char kCrashpadHandler[] = "crashpad-handler";
1248
1241 // Fallback to XPS. By default connector uses CDD. 1249 // Fallback to XPS. By default connector uses CDD.
1242 const char kEnableCloudPrintXps[] = "enable-cloud-print-xps"; 1250 const char kEnableCloudPrintXps[] = "enable-cloud-print-xps";
1243 1251
1244 // Force-enables the profile shortcut manager. This is needed for tests since 1252 // Force-enables the profile shortcut manager. This is needed for tests since
1245 // they use a custom-user-data-dir which disables this. 1253 // they use a custom-user-data-dir which disables this.
1246 const char kEnableProfileShortcutManager[] = "enable-profile-shortcut-manager"; 1254 const char kEnableProfileShortcutManager[] = "enable-profile-shortcut-manager";
1247 1255
1248 // For the DelegateExecute verb handler to launch Chrome in metro mode on 1256 // For the DelegateExecute verb handler to launch Chrome in metro mode on
1249 // Windows 8 and higher. Used when relaunching metro Chrome. 1257 // Windows 8 and higher. Used when relaunching metro Chrome.
1250 const char kForceImmersive[] = "force-immersive"; 1258 const char kForceImmersive[] = "force-immersive";
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
1367 1375
1368 // ----------------------------------------------------------------------------- 1376 // -----------------------------------------------------------------------------
1369 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1377 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1370 // 1378 //
1371 // You were going to just dump your switches here, weren't you? Instead, please 1379 // You were going to just dump your switches here, weren't you? Instead, please
1372 // put them in alphabetical order above, or in order inside the appropriate 1380 // put them in alphabetical order above, or in order inside the appropriate
1373 // ifdef at the bottom. The order should match the header. 1381 // ifdef at the bottom. The order should match the header.
1374 // ----------------------------------------------------------------------------- 1382 // -----------------------------------------------------------------------------
1375 1383
1376 } // namespace switches 1384 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/crash_keys.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698