| 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 #include "media/media_features.h" | 7 #include "media/media_features.h" |
| 8 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 378 // WebFonts intervention v2 flag and values. | 378 // WebFonts intervention v2 flag and values. |
| 379 const char kEnableWebFontsInterventionV2[] = "enable-webfonts-intervention-v2"; | 379 const char kEnableWebFontsInterventionV2[] = "enable-webfonts-intervention-v2"; |
| 380 const char kEnableWebFontsInterventionV2SwitchValueEnabledWith2G[] = | 380 const char kEnableWebFontsInterventionV2SwitchValueEnabledWith2G[] = |
| 381 "enabled-2g"; | 381 "enabled-2g"; |
| 382 const char kEnableWebFontsInterventionV2SwitchValueEnabledWith3G[] = | 382 const char kEnableWebFontsInterventionV2SwitchValueEnabledWith3G[] = |
| 383 "enabled-3g"; | 383 "enabled-3g"; |
| 384 const char kEnableWebFontsInterventionV2SwitchValueEnabledWithSlow2G[] = | 384 const char kEnableWebFontsInterventionV2SwitchValueEnabledWithSlow2G[] = |
| 385 "enabled-slow2g"; | 385 "enabled-slow2g"; |
| 386 const char kEnableWebFontsInterventionV2SwitchValueDisabled[] = "disabled"; | 386 const char kEnableWebFontsInterventionV2SwitchValueDisabled[] = "disabled"; |
| 387 | 387 |
| 388 // Enables GPU channel scheduler. |
| 389 const char kEnableGpuScheduler[] = "enable-gpu-scheduler"; |
| 390 |
| 388 // Makes the GL worker context run asynchronously by using a separate stream. | 391 // Makes the GL worker context run asynchronously by using a separate stream. |
| 389 const char kEnableGpuAsyncWorkerContext[] = "enable-gpu-async-worker-context"; | 392 const char kEnableGpuAsyncWorkerContext[] = "enable-gpu-async-worker-context"; |
| 390 | 393 |
| 391 // Specify that all compositor resources should be backed by GPU memory buffers. | 394 // Specify that all compositor resources should be backed by GPU memory buffers. |
| 392 const char kEnableGpuMemoryBufferCompositorResources[] = | 395 const char kEnableGpuMemoryBufferCompositorResources[] = |
| 393 "enable-gpu-memory-buffer-compositor-resources"; | 396 "enable-gpu-memory-buffer-compositor-resources"; |
| 394 | 397 |
| 395 // Enable GpuMemoryBuffer backed VideoFrames. | 398 // Enable GpuMemoryBuffer backed VideoFrames. |
| 396 const char kEnableGpuMemoryBufferVideoFrames[] = | 399 const char kEnableGpuMemoryBufferVideoFrames[] = |
| 397 "enable-gpu-memory-buffer-video-frames"; | 400 "enable-gpu-memory-buffer-video-frames"; |
| (...skipping 673 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1071 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1074 // the given directory. Used primarily to gather samples for IPC fuzzing. |
| 1072 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1075 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
| 1073 | 1076 |
| 1074 // Specifies the testcase used by the IPC fuzzer. | 1077 // Specifies the testcase used by the IPC fuzzer. |
| 1075 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1078 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
| 1076 #endif | 1079 #endif |
| 1077 | 1080 |
| 1078 // Don't dump stuff here, follow the same order as the header. | 1081 // Don't dump stuff here, follow the same order as the header. |
| 1079 | 1082 |
| 1080 } // namespace switches | 1083 } // namespace switches |
| OLD | NEW |