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

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

Issue 11931022: Update comment describing disable-fullscreen switch (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | 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 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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 "enable-experimental-webkit-features"; 280 "enable-experimental-webkit-features";
281 281
282 // Enables the fastback page cache. 282 // Enables the fastback page cache.
283 const char kEnableFastback[] = "enable-fastback"; 283 const char kEnableFastback[] = "enable-fastback";
284 284
285 // By default, a page is laid out to fill the entire width of the window. 285 // By default, a page is laid out to fill the entire width of the window.
286 // This flag fixes the layout of the page to a default of 980 CSS pixels, 286 // This flag fixes the layout of the page to a default of 980 CSS pixels,
287 // or to a specified width and height using --enable-fixed-layout=w,h 287 // or to a specified width and height using --enable-fixed-layout=w,h
288 const char kEnableFixedLayout[] = "enable-fixed-layout"; 288 const char kEnableFixedLayout[] = "enable-fixed-layout";
289 289
290 // Enable the JavaScript Full Screen API. 290 // Disable the JavaScript Full Screen API.
291 const char kDisableFullScreen[] = "disable-fullscreen"; 291 const char kDisableFullScreen[] = "disable-fullscreen";
292 292
293 // Enable Text Service Framework(TSF) for text inputting instead of IMM32. This 293 // Enable Text Service Framework(TSF) for text inputting instead of IMM32. This
294 // flag is ignored on Metro environment. 294 // flag is ignored on Metro environment.
295 const char kEnableTextServicesFramework[] = "enable-text-services-framework"; 295 const char kEnableTextServicesFramework[] = "enable-text-services-framework";
296 296
297 // Enable Gesture Tap Highlight 297 // Enable Gesture Tap Highlight
298 const char kEnableGestureTapHighlight[] = "enable-gesture-tap-highlight"; 298 const char kEnableGestureTapHighlight[] = "enable-gesture-tap-highlight";
299 299
300 // Enables the GPU benchmarking extension 300 // Enables the GPU benchmarking extension
(...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after
767 = "disable-fixed-position-creates-stacking-context"; 767 = "disable-fixed-position-creates-stacking-context";
768 768
769 // Defer image decoding in WebKit until painting. 769 // Defer image decoding in WebKit until painting.
770 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding"; 770 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding";
771 771
772 // Enables history navigation in response to horizontal overscroll. 772 // Enables history navigation in response to horizontal overscroll.
773 const char kEnableOverscrollHistoryNavigation[] = 773 const char kEnableOverscrollHistoryNavigation[] =
774 "enable-overscroll-history-navigation"; 774 "enable-overscroll-history-navigation";
775 775
776 } // namespace switches 776 } // namespace switches
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698