| Index: content/public/common/content_switches.cc
|
| diff --git a/content/public/common/content_switches.cc b/content/public/common/content_switches.cc
|
| index 09597999be79ef4bbc54790191587fe328347d49..14dfc5a565890a7a0291be823994cf5e1244b636 100644
|
| --- a/content/public/common/content_switches.cc
|
| +++ b/content/public/common/content_switches.cc
|
| @@ -556,11 +556,20 @@ const char kEnableUniversalAcceleratedOverflowScroll[] =
|
| const char kEnableUserMediaScreenCapturing[] =
|
| "enable-usermedia-screen-capturing";
|
|
|
| -// Enables the use of the viewport meta tag, which allows
|
| +// Enables the use of the @viewport CSS rule, which allows
|
| // pages to control aspects of their own layout. This also turns on touch-screen
|
| // pinch gestures.
|
| const char kEnableViewport[] = "enable-viewport";
|
|
|
| +// Enables the use of the legacy viewport meta tag. Turning this on also
|
| +// turns on the @viewport CSS rule
|
| +const char kEnableViewportMeta[] = "enable-viewport-meta";
|
| +
|
| +// Resizes of the main frame are the caused by changing between landscape
|
| +// and portrait mode (i.e. Android) so the page should be rescaled to fit
|
| +const char kMainFrameResizesAreOrientationChanges[] =
|
| + "main-frame-resizes-are-orientation-changes";
|
| +
|
| // Enables moving cursor by word in visual order.
|
| const char kEnableVisualWordMovement[] = "enable-visual-word-movement";
|
|
|
|
|