| 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 "build/build_config.h" | 5 #include "build/build_config.h" |
| 6 #include "content/public/common/content_switches.h" | 6 #include "content/public/common/content_switches.h" |
| 7 | 7 |
| 8 namespace switches { | 8 namespace switches { |
| 9 | 9 |
| 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to | 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to |
| (...skipping 606 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 617 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height"; | 617 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height"; |
| 618 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width"; | 618 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width"; |
| 619 | 619 |
| 620 // Sample memory usage with high frequency and store the results to the | 620 // Sample memory usage with high frequency and store the results to the |
| 621 // Renderer.Memory histogram. Used in memory tests. | 621 // Renderer.Memory histogram. Used in memory tests. |
| 622 const char kMemoryMetrics[] = "memory-metrics"; | 622 const char kMemoryMetrics[] = "memory-metrics"; |
| 623 | 623 |
| 624 // Use a Mojo-based LocalStorage implementation. | 624 // Use a Mojo-based LocalStorage implementation. |
| 625 const char kMojoLocalStorage[] = "mojo-local-storage"; | 625 const char kMojoLocalStorage[] = "mojo-local-storage"; |
| 626 | 626 |
| 627 // A random token a child process can exchange for a primordial message pipe |
| 628 // to the browser. |
| 629 const char kMojoPrimordialPipeToken[] = "mojo-primordial-pipe-token"; |
| 630 |
| 627 // Mutes audio sent to the audio device so it is not audible during | 631 // Mutes audio sent to the audio device so it is not audible during |
| 628 // automated testing. | 632 // automated testing. |
| 629 const char kMuteAudio[] = "mute-audio"; | 633 const char kMuteAudio[] = "mute-audio"; |
| 630 | 634 |
| 631 // Don't send HTTP-Referer headers. | 635 // Don't send HTTP-Referer headers. |
| 632 const char kNoReferrers[] = "no-referrers"; | 636 const char kNoReferrers[] = "no-referrers"; |
| 633 | 637 |
| 634 // Disables the sandbox for all process types that are normally sandboxed. | 638 // Disables the sandbox for all process types that are normally sandboxed. |
| 635 const char kNoSandbox[] = "no-sandbox"; | 639 const char kNoSandbox[] = "no-sandbox"; |
| 636 | 640 |
| (...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1045 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 1049 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
| 1046 | 1050 |
| 1047 // Enables the exporting of the tracing events to ETW. This is only supported on | 1051 // Enables the exporting of the tracing events to ETW. This is only supported on |
| 1048 // Windows Vista and later. | 1052 // Windows Vista and later. |
| 1049 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1053 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 1050 #endif | 1054 #endif |
| 1051 | 1055 |
| 1052 // Don't dump stuff here, follow the same order as the header. | 1056 // Don't dump stuff here, follow the same order as the header. |
| 1053 | 1057 |
| 1054 } // namespace switches | 1058 } // namespace switches |
| OLD | NEW |