Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
|
please use gerrit instead
2017/01/06 21:49:09
2017
| |
| 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/06 21:49:09
private:
DISALLOW_COPY_AND_ASSIGN(ChromePaymentR
please use gerrit instead
2017/01/06 21:49:09
Need to override the destructor from PaymentReques
| |
| 18 | |
| 19 } // namespace payments | |
| 20 | |
| 21 #endif // CHROME_BROWSER_PAYMENTS_CHROME_PAYMENT_REQUEST_DELEGATE_H_ | |
| OLD | NEW |