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

Side by Side Diff: base/base_switches.cc

Issue 6410105: run iwyu on base! Base URL: svn://svn.chromium.org/chrome/trunk/src/base
Patch Set: Created 9 years, 10 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_paths.cc ('k') | base/command_line.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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"
6
7 namespace switches { 5 namespace switches {
8 6
9 // If the program includes base/debug/debug_on_start_win.h, the process will 7 // If the program includes base/debug/debug_on_start_win.h, the process will
10 // (on Windows only) start the JIT system-registered debugger on itself and 8 // (on Windows only) start the JIT system-registered debugger on itself and
11 // will wait for 60 seconds for the debugger to attach to itself. Then a break 9 // will wait for 60 seconds for the debugger to attach to itself. Then a break
12 // point will be hit. 10 // point will be hit.
13 const char kDebugOnStart[] = "debug-on-start"; 11 const char kDebugOnStart[] = "debug-on-start";
14 12
15 // Disables the crash reporting. 13 // Disables the crash reporting.
16 const char kDisableBreakpad[] = "disable-breakpad"; 14 const char kDisableBreakpad[] = "disable-breakpad";
(...skipping 27 matching lines...) Expand all
44 // Any pattern containing a forward or backward slash will be tested 42 // Any pattern containing a forward or backward slash will be tested
45 // against the whole pathname and not just the module. E.g., 43 // against the whole pathname and not just the module. E.g.,
46 // "*/foo/bar/*=2" would change the logging level for all code in 44 // "*/foo/bar/*=2" would change the logging level for all code in
47 // source files under a "foo/bar" directory. 45 // source files under a "foo/bar" directory.
48 const char kVModule[] = "vmodule"; 46 const char kVModule[] = "vmodule";
49 47
50 // Will wait for 60 seconds for a debugger to come to attach to the process. 48 // Will wait for 60 seconds for a debugger to come to attach to the process.
51 const char kWaitForDebugger[] = "wait-for-debugger"; 49 const char kWaitForDebugger[] = "wait-for-debugger";
52 50
53 } // namespace switches 51 } // namespace switches
OLDNEW
« no previous file with comments | « base/base_paths.cc ('k') | base/command_line.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698