OLD | NEW |
(Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #import "ios/chrome/browser/payments/test_payment_request.h" |
| 6 |
| 7 #include "components/autofill/core/browser/personal_data_manager.h" |
| 8 #include "components/autofill/core/browser/region_data_loader.h" |
| 9 #include "ios/web/public/payments/payment_request.h" |
| 10 |
| 11 #if !defined(__has_feature) || !__has_feature(objc_arc) |
| 12 #error "This file requires ARC support." |
| 13 #endif |
| 14 |
| 15 autofill::RegionDataLoader* TestPaymentRequest::GetRegionDataLoader() { |
| 16 return region_data_loader_; |
| 17 } |
OLD | NEW |