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

Side by Side Diff: base/base_switches.cc

Issue 5984007: Move base/debug_on_start to base/debugger and rename it to be _win since it... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 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 | Annotate | Revision Log
« no previous file with comments | « base/base.gypi ('k') | base/debug/debug_on_start_win.h » ('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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 "base/base_switches.h" 5 #include "base/base_switches.h"
6 6
7 namespace switches { 7 namespace switches {
8 8
9 // If the program includes chrome/common/debug_on_start.h, the process will 9 // If the program includes base/debug/debug_on_start_win.h, the process will
10 // start the JIT system-registered debugger on itself and will wait for 60 10 // (on Windows only) start the JIT system-registered debugger on itself and
11 // seconds for the debugger to attach to itself. Then a break point will be hit. 11 // will wait for 60 seconds for the debugger to attach to itself. Then a break
12 // point will be hit.
12 const char kDebugOnStart[] = "debug-on-start"; 13 const char kDebugOnStart[] = "debug-on-start";
13 14
14 // Disables the crash reporting. 15 // Disables the crash reporting.
15 const char kDisableBreakpad[] = "disable-breakpad"; 16 const char kDisableBreakpad[] = "disable-breakpad";
16 17
17 // Enable DCHECKs in release mode. 18 // Enable DCHECKs in release mode.
18 const char kEnableDCHECK[] = "enable-dcheck"; 19 const char kEnableDCHECK[] = "enable-dcheck";
19 20
20 // Generates full memory crash dump. 21 // Generates full memory crash dump.
21 const char kFullMemoryCrashReport[] = "full-memory-crash-report"; 22 const char kFullMemoryCrashReport[] = "full-memory-crash-report";
(...skipping 21 matching lines...) Expand all
43 // Any pattern containing a forward or backward slash will be tested 44 // Any pattern containing a forward or backward slash will be tested
44 // against the whole pathname and not just the module. E.g., 45 // against the whole pathname and not just the module. E.g.,
45 // "*/foo/bar/*=2" would change the logging level for all code in 46 // "*/foo/bar/*=2" would change the logging level for all code in
46 // source files under a "foo/bar" directory. 47 // source files under a "foo/bar" directory.
47 const char kVModule[] = "vmodule"; 48 const char kVModule[] = "vmodule";
48 49
49 // Will wait for 60 seconds for a debugger to come to attach to the process. 50 // Will wait for 60 seconds for a debugger to come to attach to the process.
50 const char kWaitForDebugger[] = "wait-for-debugger"; 51 const char kWaitForDebugger[] = "wait-for-debugger";
51 52
52 } // namespace switches 53 } // namespace switches
OLDNEW
« no previous file with comments | « base/base.gypi ('k') | base/debug/debug_on_start_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698