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 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
387 const char kEnableWebBluetooth[] = "enable-web-bluetooth"; | 387 const char kEnableWebBluetooth[] = "enable-web-bluetooth"; |
388 | 388 |
389 // WebFonts intervention v2 flag and values. | 389 // WebFonts intervention v2 flag and values. |
390 const char kEnableWebFontsInterventionV2[] = "enable-webfonts-intervention-v2"; | 390 const char kEnableWebFontsInterventionV2[] = "enable-webfonts-intervention-v2"; |
391 const char kEnableWebFontsInterventionV2SwitchValueEnabledWith2G[] = | 391 const char kEnableWebFontsInterventionV2SwitchValueEnabledWith2G[] = |
392 "enabled-2g"; | 392 "enabled-2g"; |
393 const char kEnableWebFontsInterventionV2SwitchValueEnabledWithSlow2G[] = | 393 const char kEnableWebFontsInterventionV2SwitchValueEnabledWithSlow2G[] = |
394 "enabled-slow2g"; | 394 "enabled-slow2g"; |
395 const char kEnableWebFontsInterventionV2SwitchValueDisabled[] = "disabled"; | 395 const char kEnableWebFontsInterventionV2SwitchValueDisabled[] = "disabled"; |
396 | 396 |
| 397 // Enables Generic Sensor API functionality. |
| 398 const char kEnableGenericSensors[] = "enable-generic-sensors"; |
| 399 |
397 // Makes the GL worker context run asynchronously by using a separate stream. | 400 // Makes the GL worker context run asynchronously by using a separate stream. |
398 const char kEnableGpuAsyncWorkerContext[] = "enable-gpu-async-worker-context"; | 401 const char kEnableGpuAsyncWorkerContext[] = "enable-gpu-async-worker-context"; |
399 | 402 |
400 // Specify that all compositor resources should be backed by GPU memory buffers. | 403 // Specify that all compositor resources should be backed by GPU memory buffers. |
401 const char kEnableGpuMemoryBufferCompositorResources[] = | 404 const char kEnableGpuMemoryBufferCompositorResources[] = |
402 "enable-gpu-memory-buffer-compositor-resources"; | 405 "enable-gpu-memory-buffer-compositor-resources"; |
403 | 406 |
404 // Enable GpuMemoryBuffer backed VideoFrames. | 407 // Enable GpuMemoryBuffer backed VideoFrames. |
405 const char kEnableGpuMemoryBufferVideoFrames[] = | 408 const char kEnableGpuMemoryBufferVideoFrames[] = |
406 "enable-gpu-memory-buffer-video-frames"; | 409 "enable-gpu-memory-buffer-video-frames"; |
(...skipping 672 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1079 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1082 // the given directory. Used primarily to gather samples for IPC fuzzing. |
1080 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1083 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
1081 | 1084 |
1082 // Specifies the testcase used by the IPC fuzzer. | 1085 // Specifies the testcase used by the IPC fuzzer. |
1083 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1086 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
1084 #endif | 1087 #endif |
1085 | 1088 |
1086 // Don't dump stuff here, follow the same order as the header. | 1089 // Don't dump stuff here, follow the same order as the header. |
1087 | 1090 |
1088 } // namespace switches | 1091 } // namespace switches |
OLD | NEW |