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 753 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
764 // Defer image decoding in WebKit until painting. | 764 // Defer image decoding in WebKit until painting. |
765 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding"; | 765 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding"; |
766 | 766 |
767 // Use a vsync signal from the browser to the renderer to schedule rendering. | 767 // Use a vsync signal from the browser to the renderer to schedule rendering. |
768 const char kEnableVsyncNotification[] = "enable-vsync-notification"; | 768 const char kEnableVsyncNotification[] = "enable-vsync-notification"; |
769 | 769 |
770 // Disables history navigation in response to horizontal overscroll. | 770 // Disables history navigation in response to horizontal overscroll. |
771 const char kDisableOverscrollHistoryNavigation[] = | 771 const char kDisableOverscrollHistoryNavigation[] = |
772 "disable-overscroll-history-navigation"; | 772 "disable-overscroll-history-navigation"; |
773 | 773 |
774 // Allocates unlimited quota for all origins. | |
kinuko
2013/03/29 00:10:09
'Allocates' sounds wrong to me. Also I think we s
tzik
2013/03/29 19:52:00
Done.
| |
775 const char kUnlimitedStorage[] = "unlimited-storage"; | |
776 | |
774 } // namespace switches | 777 } // namespace switches |
OLD | NEW |