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

Side by Side Diff: base/base_switches.cc

Issue 9669028: ui/base: Move message_box_win.{h,cc} to ui/base/win. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: keep sorted Created 8 years, 9 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_switches.h ('k') | chrome/browser/chrome_browser_main_win.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" 5 #include "base/base_switches.h"
6 6
7 namespace switches { 7 namespace switches {
8 8
9 // If the program includes base/debug/debug_on_start_win.h, the process will 9 // 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 10 // (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 11 // will wait for 60 seconds for the debugger to attach to itself. Then a break
12 // point will be hit. 12 // point will be hit.
13 const char kDebugOnStart[] = "debug-on-start"; 13 const char kDebugOnStart[] = "debug-on-start";
14 14
15 // Disables the crash reporting. 15 // Disables the crash reporting.
16 const char kDisableBreakpad[] = "disable-breakpad"; 16 const char kDisableBreakpad[] = "disable-breakpad";
17 17
18 // Enable DCHECKs in release mode. 18 // Enable DCHECKs in release mode.
19 const char kEnableDCHECK[] = "enable-dcheck"; 19 const char kEnableDCHECK[] = "enable-dcheck";
20 20
21 // Generates full memory crash dump. 21 // Generates full memory crash dump.
22 const char kFullMemoryCrashReport[] = "full-memory-crash-report"; 22 const char kFullMemoryCrashReport[] = "full-memory-crash-report";
23 23
24 // Suppresses all error dialogs when present. 24 // Suppresses all error dialogs when present.
25 const char kNoErrorDialogs[] = "noerrdialogs"; 25 const char kNoErrorDialogs[] = "noerrdialogs";
26 26
27 // Disable ui::MessageBox. This is useful when running as part of scripts that
28 // do not have a user interface.
29 const char kNoMessageBox[] = "no-message-box";
30
31 // When running certain tests that spawn child processes, this switch indicates 27 // When running certain tests that spawn child processes, this switch indicates
32 // to the test framework that the current process is a child process. 28 // to the test framework that the current process is a child process.
33 const char kTestChildProcess[] = "test-child-process"; 29 const char kTestChildProcess[] = "test-child-process";
34 30
35 // Gives the default maximal active V-logging level; 0 is the default. 31 // Gives the default maximal active V-logging level; 0 is the default.
36 // Normally positive values are used for V-logging levels. 32 // Normally positive values are used for V-logging levels.
37 const char kV[] = "v"; 33 const char kV[] = "v";
38 34
39 // Gives the per-module maximal V-logging levels to override the value 35 // Gives the per-module maximal V-logging levels to override the value
40 // given by --v. E.g. "my_module=2,foo*=3" would change the logging 36 // given by --v. E.g. "my_module=2,foo*=3" would change the logging
41 // level for all code in source files "my_module.*" and "foo*.*" 37 // level for all code in source files "my_module.*" and "foo*.*"
42 // ("-inl" suffixes are also disregarded for this matching). 38 // ("-inl" suffixes are also disregarded for this matching).
43 // 39 //
44 // Any pattern containing a forward or backward slash will be tested 40 // Any pattern containing a forward or backward slash will be tested
45 // against the whole pathname and not just the module. E.g., 41 // against the whole pathname and not just the module. E.g.,
46 // "*/foo/bar/*=2" would change the logging level for all code in 42 // "*/foo/bar/*=2" would change the logging level for all code in
47 // source files under a "foo/bar" directory. 43 // source files under a "foo/bar" directory.
48 const char kVModule[] = "vmodule"; 44 const char kVModule[] = "vmodule";
49 45
50 // Will wait for 60 seconds for a debugger to come to attach to the process. 46 // Will wait for 60 seconds for a debugger to come to attach to the process.
51 const char kWaitForDebugger[] = "wait-for-debugger"; 47 const char kWaitForDebugger[] = "wait-for-debugger";
52 48
53 } // namespace switches 49 } // namespace switches
OLDNEW
« no previous file with comments | « base/base_switches.h ('k') | chrome/browser/chrome_browser_main_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698