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

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

Issue 12036074: overscroll: Enable overscroll navigation by default. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: tot-merge 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 | « 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 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 750 matching lines...) Expand 10 before | Expand all | Expand 10 after
761 const char kUseExynosVda[] = "use-exynos-vda"; 761 const char kUseExynosVda[] = "use-exynos-vda";
762 762
763 const char kEnableFixedPositionCreatesStackingContext[] 763 const char kEnableFixedPositionCreatesStackingContext[]
764 = "enable-fixed-position-creates-stacking-context"; 764 = "enable-fixed-position-creates-stacking-context";
765 const char kDisableFixedPositionCreatesStackingContext[] 765 const char kDisableFixedPositionCreatesStackingContext[]
766 = "disable-fixed-position-creates-stacking-context"; 766 = "disable-fixed-position-creates-stacking-context";
767 767
768 // Defer image decoding in WebKit until painting. 768 // Defer image decoding in WebKit until painting.
769 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding"; 769 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding";
770 770
771 // Enables history navigation in response to horizontal overscroll. 771 // Enables history navigation in response to horizontal overscroll.
Jói 2013/01/25 11:45:49 nit: Enables -> Disables
772 const char kEnableOverscrollHistoryNavigation[] = 772 const char kDisableOverscrollHistoryNavigation[] =
773 "enable-overscroll-history-navigation"; 773 "disable-overscroll-history-navigation";
774 774
775 } // namespace switches 775 } // 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