| 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 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 660 // Logs GPU control list decisions when enforcing blacklist rules. | 660 // Logs GPU control list decisions when enforcing blacklist rules. |
| 661 const char kLogGpuControlListDecisions[] = "log-gpu-control-list-decisions"; | 661 const char kLogGpuControlListDecisions[] = "log-gpu-control-list-decisions"; |
| 662 | 662 |
| 663 // Sets the minimum log level. Valid values are from 0 to 3: | 663 // Sets the minimum log level. Valid values are from 0 to 3: |
| 664 // INFO = 0, WARNING = 1, LOG_ERROR = 2, LOG_FATAL = 3. | 664 // INFO = 0, WARNING = 1, LOG_ERROR = 2, LOG_FATAL = 3. |
| 665 const char kLoggingLevel[] = "log-level"; | 665 const char kLoggingLevel[] = "log-level"; |
| 666 | 666 |
| 667 // Enables saving net log events to a file and sets the file name to use. | 667 // Enables saving net log events to a file and sets the file name to use. |
| 668 const char kLogNetLog[] = "log-net-log"; | 668 const char kLogNetLog[] = "log-net-log"; |
| 669 | 669 |
| 670 // Make plugin processes log their sent and received messages to VLOG(1). |
| 671 const char kLogPluginMessages[] = "log-plugin-messages"; |
| 672 |
| 670 // Sets the width and height above which a composited layer will get tiled. | 673 // Sets the width and height above which a composited layer will get tiled. |
| 671 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height"; | 674 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height"; |
| 672 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width"; | 675 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width"; |
| 673 | 676 |
| 674 // Sample memory usage with high frequency and store the results to the | 677 // Sample memory usage with high frequency and store the results to the |
| 675 // Renderer.Memory histogram. Used in memory tests. | 678 // Renderer.Memory histogram. Used in memory tests. |
| 676 const char kMemoryMetrics[] = "memory-metrics"; | 679 const char kMemoryMetrics[] = "memory-metrics"; |
| 677 | 680 |
| 678 // Mutes audio sent to the audio device so it is not audible during | 681 // Mutes audio sent to the audio device so it is not audible during |
| 679 // automated testing. | 682 // automated testing. |
| (...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1003 | 1006 |
| 1004 // Disables support for Core Animation plugins. This is triggered when | 1007 // Disables support for Core Animation plugins. This is triggered when |
| 1005 // accelerated compositing is disabled. See http://crbug.com/122430 . | 1008 // accelerated compositing is disabled. See http://crbug.com/122430 . |
| 1006 const char kDisableCoreAnimationPlugins[] = | 1009 const char kDisableCoreAnimationPlugins[] = |
| 1007 "disable-core-animation-plugins"; | 1010 "disable-core-animation-plugins"; |
| 1008 #endif | 1011 #endif |
| 1009 | 1012 |
| 1010 // Don't dump stuff here, follow the same order as the header. | 1013 // Don't dump stuff here, follow the same order as the header. |
| 1011 | 1014 |
| 1012 } // namespace switches | 1015 } // namespace switches |
| OLD | NEW |