| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef IOS_CHROME_BROWSER_EXPERIMENTAL_FLAGS_H_ | 5 #ifndef IOS_CHROME_BROWSER_EXPERIMENTAL_FLAGS_H_ |
| 6 #define IOS_CHROME_BROWSER_EXPERIMENTAL_FLAGS_H_ | 6 #define IOS_CHROME_BROWSER_EXPERIMENTAL_FLAGS_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 // This file can be empty. Its purpose is to contain the relatively short lived | 10 // This file can be empty. Its purpose is to contain the relatively short lived |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 | 59 |
| 60 // Whether the Clear Browsing Data counters and time selection UI is enabled. | 60 // Whether the Clear Browsing Data counters and time selection UI is enabled. |
| 61 bool IsNewClearBrowsingDataUIEnabled(); | 61 bool IsNewClearBrowsingDataUIEnabled(); |
| 62 | 62 |
| 63 // Whether the page icon for downgraded HTTPS is enabled. | 63 // Whether the page icon for downgraded HTTPS is enabled. |
| 64 bool IsPageIconForDowngradedHTTPSEnabled(); | 64 bool IsPageIconForDowngradedHTTPSEnabled(); |
| 65 | 65 |
| 66 // Whether password generation is enabled. | 66 // Whether password generation is enabled. |
| 67 bool IsPasswordGenerationEnabled(); | 67 bool IsPasswordGenerationEnabled(); |
| 68 | 68 |
| 69 // Whether the Payment Request API is enabled or not. | |
| 70 bool IsPaymentRequestEnabled(); | |
| 71 | |
| 72 // Whether the Physical Web feature is enabled. | 69 // Whether the Physical Web feature is enabled. |
| 73 bool IsPhysicalWebEnabled(); | 70 bool IsPhysicalWebEnabled(); |
| 74 | 71 |
| 75 // Whether reader mode is enabled. | 72 // Whether reader mode is enabled. |
| 76 bool IsReaderModeEnabled(); | 73 bool IsReaderModeEnabled(); |
| 77 | 74 |
| 78 // Whether request mobile site is enabled. | 75 // Whether request mobile site is enabled. |
| 79 bool IsRequestMobileSiteEnabled(); | 76 bool IsRequestMobileSiteEnabled(); |
| 80 | 77 |
| 81 // Whether the Sign In Flow via SFSafariViewController is enabled. | 78 // Whether the Sign In Flow via SFSafariViewController is enabled. |
| (...skipping 29 matching lines...) Expand all Loading... |
| 111 | 108 |
| 112 // Whether the WKBackForwardList based navigation manager is enabled. | 109 // Whether the WKBackForwardList based navigation manager is enabled. |
| 113 bool IsSlimNavigationManagerEnabled(); | 110 bool IsSlimNavigationManagerEnabled(); |
| 114 | 111 |
| 115 // Whether the 3rd party keyboard omnibox workaround is enabled. | 112 // Whether the 3rd party keyboard omnibox workaround is enabled. |
| 116 bool IsThirdPartyKeyboardWorkaroundEnabled(); | 113 bool IsThirdPartyKeyboardWorkaroundEnabled(); |
| 117 | 114 |
| 118 } // namespace experimental_flags | 115 } // namespace experimental_flags |
| 119 | 116 |
| 120 #endif // IOS_CHROME_BROWSER_EXPERIMENTAL_FLAGS_H_ | 117 #endif // IOS_CHROME_BROWSER_EXPERIMENTAL_FLAGS_H_ |
| OLD | NEW |