| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_REGEX_CONSTANTS_H_ | 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_REGEX_CONSTANTS_H_ |
| 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_REGEX_CONSTANTS_H_ | 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_REGEX_CONSTANTS_H_ |
| 7 | 7 |
| 8 namespace autofill { | 8 namespace autofill { |
| 9 | 9 |
| 10 extern const char kAttentionIgnoredRe[]; | 10 extern const char kAttentionIgnoredRe[]; |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 | 58 |
| 59 // Used to match field data that might be a UPI Virtual Payment Address. | 59 // Used to match field data that might be a UPI Virtual Payment Address. |
| 60 // See: | 60 // See: |
| 61 // - http://crbug.com/702220 | 61 // - http://crbug.com/702220 |
| 62 // - https://upipayments.co.in/virtual-payment-address-vpa/ | 62 // - https://upipayments.co.in/virtual-payment-address-vpa/ |
| 63 extern const char kUPIVirtualPaymentAddressRe[]; | 63 extern const char kUPIVirtualPaymentAddressRe[]; |
| 64 | 64 |
| 65 } // namespace autofill | 65 } // namespace autofill |
| 66 | 66 |
| 67 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_REGEX_CONSTANTS_H_ | 67 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_REGEX_CONSTANTS_H_ |
| OLD | NEW |