| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 | 69 |
| 70 // Whether the page icon for downgraded HTTPS is enabled. | 70 // Whether the page icon for downgraded HTTPS is enabled. |
| 71 bool IsPageIconForDowngradedHTTPSEnabled(); | 71 bool IsPageIconForDowngradedHTTPSEnabled(); |
| 72 | 72 |
| 73 // Whether password generation is enabled. | 73 // Whether password generation is enabled. |
| 74 bool IsPasswordGenerationEnabled(); | 74 bool IsPasswordGenerationEnabled(); |
| 75 | 75 |
| 76 // Whether the Payment Request API is enabled or not. | 76 // Whether the Payment Request API is enabled or not. |
| 77 bool IsPaymentRequestEnabled(); | 77 bool IsPaymentRequestEnabled(); |
| 78 | 78 |
| 79 // Whether the back-forward navigation uses pending index. |
| 80 bool IsPendingIndexNavigationEnabled(); |
| 81 |
| 79 // Whether the Physical Web feature is enabled. | 82 // Whether the Physical Web feature is enabled. |
| 80 bool IsPhysicalWebEnabled(); | 83 bool IsPhysicalWebEnabled(); |
| 81 | 84 |
| 82 // Whether reader mode is enabled. | 85 // Whether reader mode is enabled. |
| 83 bool IsReaderModeEnabled(); | 86 bool IsReaderModeEnabled(); |
| 84 | 87 |
| 85 // Whether the reading list is enabled. | 88 // Whether the reading list is enabled. |
| 86 bool IsReadingListEnabled(); | 89 bool IsReadingListEnabled(); |
| 87 | 90 |
| 88 // Whether the Sign In Flow via SFSafariViewController is enabled. | 91 // Whether the Sign In Flow via SFSafariViewController is enabled. |
| (...skipping 11 matching lines...) Expand all Loading... |
| 100 // Whether password generation fields are determined using local heuristics | 103 // Whether password generation fields are determined using local heuristics |
| 101 // only. | 104 // only. |
| 102 bool UseOnlyLocalHeuristicsForPasswordGeneration(); | 105 bool UseOnlyLocalHeuristicsForPasswordGeneration(); |
| 103 | 106 |
| 104 // Whether the Suggestions UI is enabled. | 107 // Whether the Suggestions UI is enabled. |
| 105 bool IsSuggestionsUIEnabled(); | 108 bool IsSuggestionsUIEnabled(); |
| 106 | 109 |
| 107 } // namespace experimental_flags | 110 } // namespace experimental_flags |
| 108 | 111 |
| 109 #endif // IOS_CHROME_BROWSER_EXPERIMENTAL_FLAGS_H_ | 112 #endif // IOS_CHROME_BROWSER_EXPERIMENTAL_FLAGS_H_ |
| OLD | NEW |