Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(74)

Side by Side Diff: content/public/common/content_switches.cc

Issue 170293002: Remove --enable-input-mode-attribute flag (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/public/common/content_switches.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #include "base/command_line.h" 7 #include "base/command_line.h"
8 8
9 namespace switches { 9 namespace switches {
10 10
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after
482 // Use high resolution timers for TimeTicks. 482 // Use high resolution timers for TimeTicks.
483 const char kEnableHighResolutionTime[] = "enable-high-resolution-time"; 483 const char kEnableHighResolutionTime[] = "enable-high-resolution-time";
484 #endif 484 #endif
485 485
486 // Enable HTML Imports 486 // Enable HTML Imports
487 extern const char kEnableHTMLImports[] = "enable-html-imports"; 487 extern const char kEnableHTMLImports[] = "enable-html-imports";
488 488
489 // Enables support for inband text tracks in media content. 489 // Enables support for inband text tracks in media content.
490 const char kEnableInbandTextTracks[] = "enable-inband-text-tracks"; 490 const char kEnableInbandTextTracks[] = "enable-inband-text-tracks";
491 491
492 // Enable inputmode attribute of HTML input or text element.
493 extern const char kEnableInputModeAttribute[] = "enable-input-mode-attribute";
494
495 // Force logging to be enabled. Logging is disabled by default in release 492 // Force logging to be enabled. Logging is disabled by default in release
496 // builds. 493 // builds.
497 const char kEnableLogging[] = "enable-logging"; 494 const char kEnableLogging[] = "enable-logging";
498 495
499 // Enables the memory benchmarking extension 496 // Enables the memory benchmarking extension
500 const char kEnableMemoryBenchmarking[] = "enable-memory-benchmarking"; 497 const char kEnableMemoryBenchmarking[] = "enable-memory-benchmarking";
501 498
502 // On Windows, converts the page to the currently-installed monitor profile. 499 // On Windows, converts the page to the currently-installed monitor profile.
503 // This does NOT enable color management for images. The source is still 500 // This does NOT enable color management for images. The source is still
504 // assumed to be sRGB. 501 // assumed to be sRGB.
(...skipping 564 matching lines...) Expand 10 before | Expand all | Expand 10 after
1069 #endif 1066 #endif
1070 1067
1071 #if defined(OS_POSIX) 1068 #if defined(OS_POSIX)
1072 // Causes the child processes to cleanly exit via calling exit(). 1069 // Causes the child processes to cleanly exit via calling exit().
1073 const char kChildCleanExit[] = "child-clean-exit"; 1070 const char kChildCleanExit[] = "child-clean-exit";
1074 #endif 1071 #endif
1075 1072
1076 // Don't dump stuff here, follow the same order as the header. 1073 // Don't dump stuff here, follow the same order as the header.
1077 1074
1078 } // namespace switches 1075 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698