| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 | 81 |
| 82 // Whether the Payment Request API is enabled or not. | 82 // Whether the Payment Request API is enabled or not. |
| 83 bool IsPaymentRequestEnabled(); | 83 bool IsPaymentRequestEnabled(); |
| 84 | 84 |
| 85 // Whether the back-forward navigation uses pending index. | 85 // Whether the back-forward navigation uses pending index. |
| 86 bool IsPendingIndexNavigationEnabled(); | 86 bool IsPendingIndexNavigationEnabled(); |
| 87 | 87 |
| 88 // Whether the Physical Web feature is enabled. | 88 // Whether the Physical Web feature is enabled. |
| 89 bool IsPhysicalWebEnabled(); | 89 bool IsPhysicalWebEnabled(); |
| 90 | 90 |
| 91 // Whether the QR Code Reader is enabled. | |
| 92 bool IsQRCodeReaderEnabled(); | |
| 93 | |
| 94 // Whether reader mode is enabled. | 91 // Whether reader mode is enabled. |
| 95 bool IsReaderModeEnabled(); | 92 bool IsReaderModeEnabled(); |
| 96 | 93 |
| 97 // Whether the reading list is enabled. | 94 // Whether the reading list is enabled. |
| 98 bool IsReadingListEnabled(); | 95 bool IsReadingListEnabled(); |
| 99 | 96 |
| 100 // Whether the Sign In Flow via SFSafariViewController is enabled. | 97 // Whether the Sign In Flow via SFSafariViewController is enabled. |
| 101 bool IsSafariVCSignInEnabled(); | 98 bool IsSafariVCSignInEnabled(); |
| 102 | 99 |
| 103 // Whether launching actions from Spotlight is enabled. | 100 // Whether launching actions from Spotlight is enabled. |
| (...skipping 11 matching lines...) Expand all Loading... |
| 115 // Whether viewing and copying passwords is enabled. | 112 // Whether viewing and copying passwords is enabled. |
| 116 bool IsViewCopyPasswordsEnabled(); | 113 bool IsViewCopyPasswordsEnabled(); |
| 117 | 114 |
| 118 // Whether password generation fields are determined using local heuristics | 115 // Whether password generation fields are determined using local heuristics |
| 119 // only. | 116 // only. |
| 120 bool UseOnlyLocalHeuristicsForPasswordGeneration(); | 117 bool UseOnlyLocalHeuristicsForPasswordGeneration(); |
| 121 | 118 |
| 122 } // namespace experimental_flags | 119 } // namespace experimental_flags |
| 123 | 120 |
| 124 #endif // IOS_CHROME_BROWSER_EXPERIMENTAL_FLAGS_H_ | 121 #endif // IOS_CHROME_BROWSER_EXPERIMENTAL_FLAGS_H_ |
| OLD | NEW |