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 "content/public/common/content_switches.h" | 5 #include "content/public/common/content_switches.h" |
6 | 6 |
7 namespace switches { | 7 namespace switches { |
8 | 8 |
9 // By default, file:// URIs cannot read other file:// URIs. This is an | 9 // By default, file:// URIs cannot read other file:// URIs. This is an |
10 // override for developers who need the old behavior for testing. | 10 // override for developers who need the old behavior for testing. |
(...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
398 // See comment for kEnableCompositingForFixedPosition. | 398 // See comment for kEnableCompositingForFixedPosition. |
399 const char kEnableHighDpiCompositingForFixedPosition[] = | 399 const char kEnableHighDpiCompositingForFixedPosition[] = |
400 "enable-high-dpi-fixed-position-compositing"; | 400 "enable-high-dpi-fixed-position-compositing"; |
401 | 401 |
402 // Enable HTML Imports | 402 // Enable HTML Imports |
403 extern const char kEnableHTMLImports[] = "enable-html-imports"; | 403 extern const char kEnableHTMLImports[] = "enable-html-imports"; |
404 | 404 |
405 // Enables support for inband text tracks in media content. | 405 // Enables support for inband text tracks in media content. |
406 const char kEnableInbandTextTracks[] = "enable-inband-text-tracks"; | 406 const char kEnableInbandTextTracks[] = "enable-inband-text-tracks"; |
407 | 407 |
| 408 // Enable inputmode attribute of HTML input or text element. |
| 409 extern const char kEnableInputModeAttribute[] = "enable-input-mode-attribute"; |
| 410 |
408 // Force logging to be enabled. Logging is disabled by default in release | 411 // Force logging to be enabled. Logging is disabled by default in release |
409 // builds. | 412 // builds. |
410 const char kEnableLogging[] = "enable-logging"; | 413 const char kEnableLogging[] = "enable-logging"; |
411 | 414 |
412 // Enables the memory benchmarking extension | 415 // Enables the memory benchmarking extension |
413 const char kEnableMemoryBenchmarking[] = "enable-memory-benchmarking"; | 416 const char kEnableMemoryBenchmarking[] = "enable-memory-benchmarking"; |
414 | 417 |
415 // On Windows, converts the page to the currently-installed monitor profile. | 418 // On Windows, converts the page to the currently-installed monitor profile. |
416 // This does NOT enable color management for images. The source is still | 419 // This does NOT enable color management for images. The source is still |
417 // assumed to be sRGB. | 420 // assumed to be sRGB. |
(...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
934 // Forces usage of the test compositor. Needed to run ui tests on bots. | 937 // Forces usage of the test compositor. Needed to run ui tests on bots. |
935 extern const char kTestCompositor[] = "test-compositor"; | 938 extern const char kTestCompositor[] = "test-compositor"; |
936 #endif | 939 #endif |
937 | 940 |
938 // Don't dump stuff here, follow the same order as the header. | 941 // Don't dump stuff here, follow the same order as the header. |
939 | 942 |
940 // Allows filters (SkImageFilter objects) to be sent between processes over IPC | 943 // Allows filters (SkImageFilter objects) to be sent between processes over IPC |
941 const char kAllowFiltersOverIPC[] = "allow-filters-over-ipc"; | 944 const char kAllowFiltersOverIPC[] = "allow-filters-over-ipc"; |
942 | 945 |
943 } // namespace switches | 946 } // namespace switches |
OLD | NEW |