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

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

Issue 14268004: Add overscroll edge effect animations for Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanup and layer attachment fixes Created 7 years, 8 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
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 765 matching lines...) Expand 10 before | Expand all | Expand 10 after
776 // Use a vsync signal from the browser to the renderer to schedule rendering. 776 // Use a vsync signal from the browser to the renderer to schedule rendering.
777 const char kEnableVsyncNotification[] = "enable-vsync-notification"; 777 const char kEnableVsyncNotification[] = "enable-vsync-notification";
778 778
779 // Enables history navigation in response to horizontal overscroll. 779 // Enables history navigation in response to horizontal overscroll.
780 const char kEnableOverscrollHistoryNavigation[] = 780 const char kEnableOverscrollHistoryNavigation[] =
781 "enable-overscroll-history-navigation"; 781 "enable-overscroll-history-navigation";
782 782
783 // Enables 'image/webp' accept header for image requests. 783 // Enables 'image/webp' accept header for image requests.
784 const char kEnableWebPInAcceptHeader[] = "enable-webp-in-accept-header"; 784 const char kEnableWebPInAcceptHeader[] = "enable-webp-in-accept-header";
785 785
786 #if defined(OS_ANDROID)
787 // Enables overscroll edge effects like those found in Android views.
788 const char kEnableOverscrollEdgeEffect[] = "enable-overscroll-edge-effect";
789 #endif
790
786 } // namespace switches 791 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698