Chromium Code Reviews| 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 #ifndef CHROME_BROWSER_PAYMENTS_CHROME_PAYMENT_REQUEST_DELEGATE_H_ | |
| 6 #define CHROME_BROWSER_PAYMENTS_CHROME_PAYMENT_REQUEST_DELEGATE_H_ | |
| 7 | |
| 8 #include "components/payments/payment_request_delegate.h" | |
| 9 | |
| 10 namespace payments { | |
| 11 | |
| 12 class PaymentRequestImpl; | |
| 13 | |
| 14 class ChromePaymentRequestDelegate : public PaymentRequestDelegate { | |
| 15 public: | |
| 16 void ShowPaymentRequestDialog(PaymentRequestImpl* impl) override; | |
| 17 }; | |
|
please use gerrit instead
2017/01/09 14:50:13
Need to override the destructor from the parent an
Mathieu
2017/01/09 16:54:19
Done.
| |
| 18 | |
| 19 } // namespace payments | |
| 20 | |
| 21 #endif // CHROME_BROWSER_PAYMENTS_CHROME_PAYMENT_REQUEST_DELEGATE_H_ | |
| OLD | NEW |