| 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 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 374 "enable-experimental-web-platform-features"; | 374 "enable-experimental-web-platform-features"; |
| 375 | 375 |
| 376 // Comma-separated list of feature names to enable. See also kDisableFeatures. | 376 // Comma-separated list of feature names to enable. See also kDisableFeatures. |
| 377 const char kEnableFeatures[] = "enable-features"; | 377 const char kEnableFeatures[] = "enable-features"; |
| 378 | 378 |
| 379 // Enable Web Bluetooth. | 379 // Enable Web Bluetooth. |
| 380 const char kEnableWebBluetooth[] = "enable-web-bluetooth"; | 380 const char kEnableWebBluetooth[] = "enable-web-bluetooth"; |
| 381 | 381 |
| 382 // WebFonts intervention v2 flag and values. | 382 // WebFonts intervention v2 flag and values. |
| 383 const char kEnableWebFontsInterventionV2[] = "enable-webfonts-intervention-v2"; | 383 const char kEnableWebFontsInterventionV2[] = "enable-webfonts-intervention-v2"; |
| 384 const char kEnableWebFontsInterventionV2SwitchValueEnabledWith3G[] = |
| 385 "enabled-3g"; |
| 384 const char kEnableWebFontsInterventionV2SwitchValueEnabledWith2G[] = | 386 const char kEnableWebFontsInterventionV2SwitchValueEnabledWith2G[] = |
| 385 "enabled-2g"; | 387 "enabled-2g"; |
| 386 const char kEnableWebFontsInterventionV2SwitchValueEnabledWithSlow2G[] = | 388 const char kEnableWebFontsInterventionV2SwitchValueEnabledWithSlow2G[] = |
| 387 "enabled-slow2g"; | 389 "enabled-slow2g"; |
| 388 const char kEnableWebFontsInterventionV2SwitchValueDisabled[] = "disabled"; | 390 const char kEnableWebFontsInterventionV2SwitchValueDisabled[] = "disabled"; |
| 389 | 391 |
| 390 // Enables Generic Sensor API functionality. | 392 // Enables Generic Sensor API functionality. |
| 391 const char kEnableGenericSensors[] = "enable-generic-sensors"; | 393 const char kEnableGenericSensors[] = "enable-generic-sensors"; |
| 392 | 394 |
| 393 // Makes the GL worker context run asynchronously by using a separate stream. | 395 // Makes the GL worker context run asynchronously by using a separate stream. |
| (...skipping 673 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1067 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1069 // the given directory. Used primarily to gather samples for IPC fuzzing. |
| 1068 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1070 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
| 1069 | 1071 |
| 1070 // Specifies the testcase used by the IPC fuzzer. | 1072 // Specifies the testcase used by the IPC fuzzer. |
| 1071 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1073 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
| 1072 #endif | 1074 #endif |
| 1073 | 1075 |
| 1074 // Don't dump stuff here, follow the same order as the header. | 1076 // Don't dump stuff here, follow the same order as the header. |
| 1075 | 1077 |
| 1076 } // namespace switches | 1078 } // namespace switches |
| OLD | NEW |