| 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 604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 615 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height"; | 615 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height"; |
| 616 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width"; | 616 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width"; |
| 617 | 617 |
| 618 // Sample memory usage with high frequency and store the results to the | 618 // Sample memory usage with high frequency and store the results to the |
| 619 // Renderer.Memory histogram. Used in memory tests. | 619 // Renderer.Memory histogram. Used in memory tests. |
| 620 const char kMemoryMetrics[] = "memory-metrics"; | 620 const char kMemoryMetrics[] = "memory-metrics"; |
| 621 | 621 |
| 622 // Use a Mojo-based LocalStorage implementation. | 622 // Use a Mojo-based LocalStorage implementation. |
| 623 const char kMojoLocalStorage[] = "mojo-local-storage"; | 623 const char kMojoLocalStorage[] = "mojo-local-storage"; |
| 624 | 624 |
| 625 // A random token a child process can exchange for a primordial message pipe | |
| 626 // to the browser. | |
| 627 const char kMojoPrimordialPipeToken[] = "mojo-primordial-pipe-token"; | |
| 628 | |
| 629 // Mutes audio sent to the audio device so it is not audible during | 625 // Mutes audio sent to the audio device so it is not audible during |
| 630 // automated testing. | 626 // automated testing. |
| 631 const char kMuteAudio[] = "mute-audio"; | 627 const char kMuteAudio[] = "mute-audio"; |
| 632 | 628 |
| 633 // Don't send HTTP-Referer headers. | 629 // Don't send HTTP-Referer headers. |
| 634 const char kNoReferrers[] = "no-referrers"; | 630 const char kNoReferrers[] = "no-referrers"; |
| 635 | 631 |
| 636 // Disables the sandbox for all process types that are normally sandboxed. | 632 // Disables the sandbox for all process types that are normally sandboxed. |
| 637 const char kNoSandbox[] = "no-sandbox"; | 633 const char kNoSandbox[] = "no-sandbox"; |
| 638 | 634 |
| (...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1042 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 1038 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
| 1043 | 1039 |
| 1044 // Enables the exporting of the tracing events to ETW. This is only supported on | 1040 // Enables the exporting of the tracing events to ETW. This is only supported on |
| 1045 // Windows Vista and later. | 1041 // Windows Vista and later. |
| 1046 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1042 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 1047 #endif | 1043 #endif |
| 1048 | 1044 |
| 1049 // Don't dump stuff here, follow the same order as the header. | 1045 // Don't dump stuff here, follow the same order as the header. |
| 1050 | 1046 |
| 1051 } // namespace switches | 1047 } // namespace switches |
| OLD | NEW |