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 | |
82 // Whether the Physical Web feature is enabled. | 79 // Whether the Physical Web feature is enabled. |
83 bool IsPhysicalWebEnabled(); | 80 bool IsPhysicalWebEnabled(); |
84 | 81 |
85 // Whether reader mode is enabled. | 82 // Whether reader mode is enabled. |
86 bool IsReaderModeEnabled(); | 83 bool IsReaderModeEnabled(); |
87 | 84 |
88 // Whether the reading list is enabled. | 85 // Whether the reading list is enabled. |
89 bool IsReadingListEnabled(); | 86 bool IsReadingListEnabled(); |
90 | 87 |
91 // Whether the Sign In Flow via SFSafariViewController is enabled. | 88 // Whether the Sign In Flow via SFSafariViewController is enabled. |
(...skipping 11 matching lines...) Expand all Loading... |
103 // Whether password generation fields are determined using local heuristics | 100 // Whether password generation fields are determined using local heuristics |
104 // only. | 101 // only. |
105 bool UseOnlyLocalHeuristicsForPasswordGeneration(); | 102 bool UseOnlyLocalHeuristicsForPasswordGeneration(); |
106 | 103 |
107 // Whether the Suggestions UI is enabled. | 104 // Whether the Suggestions UI is enabled. |
108 bool IsSuggestionsUIEnabled(); | 105 bool IsSuggestionsUIEnabled(); |
109 | 106 |
110 } // namespace experimental_flags | 107 } // namespace experimental_flags |
111 | 108 |
112 #endif // IOS_CHROME_BROWSER_EXPERIMENTAL_FLAGS_H_ | 109 #endif // IOS_CHROME_BROWSER_EXPERIMENTAL_FLAGS_H_ |
OLD | NEW |