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

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

Issue 331143007: Remove the LOG_ERROR_REPORT log severity level. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: missed a SetLogReportHandler; also removed the --silent-dump-on-dcheck flag Created 6 years, 6 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/common/chrome_switches.h ('k') | chrome/common/logging_chrome.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 1085 matching lines...) Expand 10 before | Expand all | Expand 10 after
1096 // See kHideIcons. 1096 // See kHideIcons.
1097 const char kShowIcons[] = "show-icons"; 1097 const char kShowIcons[] = "show-icons";
1098 1098
1099 // Marks a renderer as the signin process. 1099 // Marks a renderer as the signin process.
1100 const char kSigninProcess[] = "signin-process"; 1100 const char kSigninProcess[] = "signin-process";
1101 1101
1102 // Does not show an infobar when an extension attaches to a page using 1102 // Does not show an infobar when an extension attaches to a page using
1103 // chrome.debugger page. Required to attach to extension background pages. 1103 // chrome.debugger page. Required to attach to extension background pages.
1104 const char kSilentDebuggerExtensionAPI[] = "silent-debugger-extension-api"; 1104 const char kSilentDebuggerExtensionAPI[] = "silent-debugger-extension-api";
1105 1105
1106 // Changes the DCHECKS to dump memory and continue instead of displaying error
1107 // dialog. This is valid only in Release mode when gyp dcheck_always_on=1.
1108 const char kSilentDumpOnDCHECK[] = "silent-dump-on-dcheck";
1109
1110 // Causes Chrome to launch without opening any windows by default. Useful if 1106 // Causes Chrome to launch without opening any windows by default. Useful if
1111 // one wishes to use Chrome as an ash server. 1107 // one wishes to use Chrome as an ash server.
1112 const char kSilentLaunch[] = "silent-launch"; 1108 const char kSilentLaunch[] = "silent-launch";
1113 1109
1114 // Simulates an update being available. 1110 // Simulates an update being available.
1115 const char kSimulateUpgrade[] = "simulate-upgrade"; 1111 const char kSimulateUpgrade[] = "simulate-upgrade";
1116 1112
1117 // Simulates a critical update being available. 1113 // Simulates a critical update being available.
1118 const char kSimulateCriticalUpdate[] = "simulate-critical-update"; 1114 const char kSimulateCriticalUpdate[] = "simulate-critical-update";
1119 1115
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
1407 1403
1408 // ----------------------------------------------------------------------------- 1404 // -----------------------------------------------------------------------------
1409 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1405 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1410 // 1406 //
1411 // You were going to just dump your switches here, weren't you? Instead, please 1407 // You were going to just dump your switches here, weren't you? Instead, please
1412 // put them in alphabetical order above, or in order inside the appropriate 1408 // put them in alphabetical order above, or in order inside the appropriate
1413 // ifdef at the bottom. The order should match the header. 1409 // ifdef at the bottom. The order should match the header.
1414 // ----------------------------------------------------------------------------- 1410 // -----------------------------------------------------------------------------
1415 1411
1416 } // namespace switches 1412 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/logging_chrome.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698