| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 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 | 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 CHROME_BROWSER_PAYMENTS_CHROME_PAYMENT_REQUEST_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_PAYMENTS_CHROME_PAYMENT_REQUEST_DELEGATE_H_ |
| 6 #define CHROME_BROWSER_PAYMENTS_CHROME_PAYMENT_REQUEST_DELEGATE_H_ | 6 #define CHROME_BROWSER_PAYMENTS_CHROME_PAYMENT_REQUEST_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "components/payments/payment_request_delegate.h" | 9 #include "components/payments/content/payment_request_delegate.h" |
| 10 | 10 |
| 11 namespace content { | 11 namespace content { |
| 12 class WebContents; | 12 class WebContents; |
| 13 } | 13 } |
| 14 | 14 |
| 15 namespace payments { | 15 namespace payments { |
| 16 | 16 |
| 17 class PaymentRequest; | 17 class PaymentRequest; |
| 18 class PaymentRequestDialog; | 18 class PaymentRequestDialog; |
| 19 | 19 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 35 private: | 35 private: |
| 36 // Not owned but outlives the PaymentRequest object that owns this. | 36 // Not owned but outlives the PaymentRequest object that owns this. |
| 37 content::WebContents* web_contents_; | 37 content::WebContents* web_contents_; |
| 38 | 38 |
| 39 DISALLOW_COPY_AND_ASSIGN(ChromePaymentRequestDelegate); | 39 DISALLOW_COPY_AND_ASSIGN(ChromePaymentRequestDelegate); |
| 40 }; | 40 }; |
| 41 | 41 |
| 42 } // namespace payments | 42 } // namespace payments |
| 43 | 43 |
| 44 #endif // CHROME_BROWSER_PAYMENTS_CHROME_PAYMENT_REQUEST_DELEGATE_H_ | 44 #endif // CHROME_BROWSER_PAYMENTS_CHROME_PAYMENT_REQUEST_DELEGATE_H_ |
| OLD | NEW |