Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 and sets the file name to which to save |
| 695 // to a separate file if a file name is given. | 695 // those events. |
|
mmenke
2014/01/09 17:55:25
optional nit: Think "Enables saving NetLog events
Randy Smith (Not in Mondays)
2014/01/09 18:35:35
Done.
| |
| 696 const char kLogNetLog[] = "log-net-log"; | 696 const char kLogNetLog[] = "log-net-log"; |
| 697 | 697 |
| 698 // Make plugin processes log their sent and received messages to VLOG(1). | 698 // Make plugin processes log their sent and received messages to VLOG(1). |
| 699 const char kLogPluginMessages[] = "log-plugin-messages"; | 699 const char kLogPluginMessages[] = "log-plugin-messages"; |
| 700 | 700 |
| 701 // Sets the width and height above which a composited layer will get tiled. | 701 // Sets the width and height above which a composited layer will get tiled. |
| 702 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height"; | 702 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height"; |
| 703 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width"; | 703 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width"; |
| 704 | 704 |
| 705 // Sample memory usage with high frequency and store the results to the | 705 // Sample memory usage with high frequency and store the results to the |
| (...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1048 #endif | 1048 #endif |
| 1049 | 1049 |
| 1050 #if defined(OS_POSIX) | 1050 #if defined(OS_POSIX) |
| 1051 // Causes the child processes to cleanly exit via calling exit(). | 1051 // Causes the child processes to cleanly exit via calling exit(). |
| 1052 const char kChildCleanExit[] = "child-clean-exit"; | 1052 const char kChildCleanExit[] = "child-clean-exit"; |
| 1053 #endif | 1053 #endif |
| 1054 | 1054 |
| 1055 // Don't dump stuff here, follow the same order as the header. | 1055 // Don't dump stuff here, follow the same order as the header. |
| 1056 | 1056 |
| 1057 } // namespace switches | 1057 } // namespace switches |
| OLD | NEW |