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