OLD | NEW |
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 Loading... |
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 |
OLD | NEW |