| Index: third_party/WebKit/Source/modules/payments/PaymentResponse.h
|
| diff --git a/third_party/WebKit/Source/modules/payments/PaymentResponse.h b/third_party/WebKit/Source/modules/payments/PaymentResponse.h
|
| index 5f1e705119722e1666095eee3be5aead3ba52d32..54200820b7ff71d183408d56b316fa006ce05b17 100644
|
| --- a/third_party/WebKit/Source/modules/payments/PaymentResponse.h
|
| +++ b/third_party/WebKit/Source/modules/payments/PaymentResponse.h
|
| @@ -31,7 +31,6 @@ public:
|
| virtual ~PaymentResponse();
|
|
|
| const String& methodName() const { return m_methodName; }
|
| - void totalAmount(CurrencyAmount& result) const { result = m_totalAmount; }
|
| ScriptValue details(ScriptState*, ExceptionState&) const;
|
| PaymentAddress* shippingAddress() const { return m_shippingAddress.get(); }
|
| const String& payerEmail() const { return m_payerEmail; }
|
| @@ -43,7 +42,6 @@ public:
|
|
|
| private:
|
| String m_methodName;
|
| - CurrencyAmount m_totalAmount;
|
| String m_stringifiedDetails;
|
| Member<PaymentAddress> m_shippingAddress;
|
| String m_payerEmail;
|
|
|