| Index: components/payments/content/payment_request.cc
|
| diff --git a/components/payments/content/payment_request.cc b/components/payments/content/payment_request.cc
|
| index 0569efcc79278e2be094adddec8fcf9076507e9b..3b50cac3b65635ec61f42002fcefc863ea869ff5 100644
|
| --- a/components/payments/content/payment_request.cc
|
| +++ b/components/payments/content/payment_request.cc
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "components/payments/content/payment_request.h"
|
|
|
| +#include <string>
|
| #include <utility>
|
|
|
| #include "base/memory/ptr_util.h"
|
| @@ -132,6 +133,10 @@ void PaymentRequest::OnShippingAddressSelected(
|
| client_->OnShippingAddressChange(std::move(address));
|
| }
|
|
|
| +PaymentRequestDelegate* PaymentRequest::GetPaymentRequestDelegate() {
|
| + return delegate_.get();
|
| +}
|
| +
|
| void PaymentRequest::UserCancelled() {
|
| // If |client_| is not bound, then the object is already being destroyed as
|
| // a result of a renderer event.
|
|
|