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

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

Issue 139853011: [Cleanup] Removing changes associated with visualWordMovement since it is never used. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 11 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
« no previous file with comments | « content/public/common/content_switches.h ('k') | content/renderer/web_preferences.cc » ('j') | 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 namespace switches { 7 namespace switches {
8 8
9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to 9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to
10 // have an effect. 0 disables MSAA. 10 // have an effect. 0 disables MSAA.
(...skipping 588 matching lines...) Expand 10 before | Expand all | Expand 10 after
599 599
600 // Enables the use of the legacy viewport meta tag. Turning this on also 600 // Enables the use of the legacy viewport meta tag. Turning this on also
601 // turns on the @viewport CSS rule 601 // turns on the @viewport CSS rule
602 const char kEnableViewportMeta[] = "enable-viewport-meta"; 602 const char kEnableViewportMeta[] = "enable-viewport-meta";
603 603
604 // Resizes of the main frame are the caused by changing between landscape 604 // Resizes of the main frame are the caused by changing between landscape
605 // and portrait mode (i.e. Android) so the page should be rescaled to fit 605 // and portrait mode (i.e. Android) so the page should be rescaled to fit
606 const char kMainFrameResizesAreOrientationChanges[] = 606 const char kMainFrameResizesAreOrientationChanges[] =
607 "main-frame-resizes-are-orientation-changes"; 607 "main-frame-resizes-are-orientation-changes";
608 608
609 // Enables moving cursor by word in visual order.
610 const char kEnableVisualWordMovement[] = "enable-visual-word-movement";
611
612 // Enable the Vtune profiler support. 609 // Enable the Vtune profiler support.
613 const char kEnableVtune[] = "enable-vtune-support"; 610 const char kEnableVtune[] = "enable-vtune-support";
614 611
615 // Enable CSS Transitions / Animations on the Web Animations model. 612 // Enable CSS Transitions / Animations on the Web Animations model.
616 const char kEnableWebAnimationsCSS[] = "enable-web-animations-css"; 613 const char kEnableWebAnimationsCSS[] = "enable-web-animations-css";
617 614
618 // Enable SVG Animations on the Web Animations model. 615 // Enable SVG Animations on the Web Animations model.
619 const char kEnableWebAnimationsSVG[] = "enable-web-animations-svg"; 616 const char kEnableWebAnimationsSVG[] = "enable-web-animations-svg";
620 617
621 // Enables WebGL extensions not yet approved by the community. 618 // Enables WebGL extensions not yet approved by the community.
(...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after
1058 #endif 1055 #endif
1059 1056
1060 #if defined(OS_POSIX) 1057 #if defined(OS_POSIX)
1061 // Causes the child processes to cleanly exit via calling exit(). 1058 // Causes the child processes to cleanly exit via calling exit().
1062 const char kChildCleanExit[] = "child-clean-exit"; 1059 const char kChildCleanExit[] = "child-clean-exit";
1063 #endif 1060 #endif
1064 1061
1065 // Don't dump stuff here, follow the same order as the header. 1062 // Don't dump stuff here, follow the same order as the header.
1066 1063
1067 } // namespace switches 1064 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | content/renderer/web_preferences.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698