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: base/base_switches.cc

Issue 3448028: Implemented VLOG() et al. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Addressed evmar's comments Created 10 years, 2 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
« no previous file with comments | « base/base_switches.h ('k') | base/logging.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 chrome/common/debug_on_start.h, the process will
10 // start the JIT system-registered debugger on itself and will wait for 60 10 // start the JIT system-registered debugger on itself and will wait for 60
(...skipping 13 matching lines...) Expand all
24 const char kNoErrorDialogs[] = "noerrdialogs"; 24 const char kNoErrorDialogs[] = "noerrdialogs";
25 25
26 // Disable win_util::MessageBox. This is useful when running as part of 26 // Disable win_util::MessageBox. This is useful when running as part of
27 // scripts that do not have a user interface. 27 // scripts that do not have a user interface.
28 const char kNoMessageBox[] = "no-message-box"; 28 const char kNoMessageBox[] = "no-message-box";
29 29
30 // When running certain tests that spawn child processes, this switch indicates 30 // When running certain tests that spawn child processes, this switch indicates
31 // to the test framework that the current process is a child process. 31 // to the test framework that the current process is a child process.
32 const char kTestChildProcess[] = "test-child-process"; 32 const char kTestChildProcess[] = "test-child-process";
33 33
34 // Gives the default maximal active V-logging level; 0 is the default.
35 // Normally positive values are used for V-logging levels.
36 const char kV[] = "v";
37
38 // Gives the per-module maximal V-logging levels to override the value
39 // given by --v. E.g. "my_module=2,foo*=3" would change the logging
40 // level for all code in source files "my_module.*" and "foo*.*"
41 // ("-inl" suffixes are also disregarded for this matching).
42 const char kVModule[] = "vmodule";
43
34 // Will wait for 60 seconds for a debugger to come to attach to the process. 44 // Will wait for 60 seconds for a debugger to come to attach to the process.
35 const char kWaitForDebugger[] = "wait-for-debugger"; 45 const char kWaitForDebugger[] = "wait-for-debugger";
36 46
37 } // namespace switches 47 } // namespace switches
OLDNEW
« no previous file with comments | « base/base_switches.h ('k') | base/logging.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698