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

Side by Side Diff: content/public/common/content_switches.cc

Issue 132283002: Modify --log-net-log comment to remove option for command line output. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Incorporated comments. Created 6 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 | « no previous file | no next file » | 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 "content/public/common/content_switches.h" 5 #include "content/public/common/content_switches.h"
6 6
7 namespace switches { 7 namespace switches {
8 8
9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to 9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to
10 // have an effect. 0 disables MSAA. 10 // have an effect. 0 disables MSAA.
(...skipping 673 matching lines...) Expand 10 before | Expand all | Expand 10 after
684 // Load an NPAPI plugin from the specified path. 684 // Load an NPAPI plugin from the specified path.
685 const char kLoadPlugin[] = "load-plugin"; 685 const char kLoadPlugin[] = "load-plugin";
686 686
687 // Logs GPU control list decisions when enforcing blacklist rules. 687 // Logs GPU control list decisions when enforcing blacklist rules.
688 const char kLogGpuControlListDecisions[] = "log-gpu-control-list-decisions"; 688 const char kLogGpuControlListDecisions[] = "log-gpu-control-list-decisions";
689 689
690 // Sets the minimum log level. Valid values are from 0 to 3: 690 // Sets the minimum log level. Valid values are from 0 to 3:
691 // INFO = 0, WARNING = 1, LOG_ERROR = 2, LOG_FATAL = 3. 691 // INFO = 0, WARNING = 1, LOG_ERROR = 2, LOG_FATAL = 3.
692 const char kLoggingLevel[] = "log-level"; 692 const char kLoggingLevel[] = "log-level";
693 693
694 // Enables displaying net log events on the command line, or writing the events 694 // Enables saving net log events to a file and sets the file name to use.
695 // to a separate file if a file name is given.
696 const char kLogNetLog[] = "log-net-log"; 695 const char kLogNetLog[] = "log-net-log";
697 696
698 // Make plugin processes log their sent and received messages to VLOG(1). 697 // Make plugin processes log their sent and received messages to VLOG(1).
699 const char kLogPluginMessages[] = "log-plugin-messages"; 698 const char kLogPluginMessages[] = "log-plugin-messages";
700 699
701 // Sets the width and height above which a composited layer will get tiled. 700 // Sets the width and height above which a composited layer will get tiled.
702 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height"; 701 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height";
703 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width"; 702 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width";
704 703
705 // Sample memory usage with high frequency and store the results to the 704 // Sample memory usage with high frequency and store the results to the
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after
1048 #endif 1047 #endif
1049 1048
1050 #if defined(OS_POSIX) 1049 #if defined(OS_POSIX)
1051 // Causes the child processes to cleanly exit via calling exit(). 1050 // Causes the child processes to cleanly exit via calling exit().
1052 const char kChildCleanExit[] = "child-clean-exit"; 1051 const char kChildCleanExit[] = "child-clean-exit";
1053 #endif 1052 #endif
1054 1053
1055 // Don't dump stuff here, follow the same order as the header. 1054 // Don't dump stuff here, follow the same order as the header.
1056 1055
1057 } // namespace switches 1056 } // namespace switches
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698