| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 PaymentRequest_h | 5 #ifndef PaymentRequest_h |
| 6 #define PaymentRequest_h | 6 #define PaymentRequest_h |
| 7 | 7 |
| 8 #include "bindings/core/v8/ScriptPromise.h" | 8 #include "bindings/core/v8/ScriptPromise.h" |
| 9 #include "bindings/core/v8/ScriptValue.h" | 9 #include "bindings/core/v8/ScriptValue.h" |
| 10 #include "bindings/core/v8/ScriptWrappable.h" | 10 #include "bindings/core/v8/ScriptWrappable.h" |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 NON_EXPORTED_BASE(public payments::mojom::blink::PaymentRequestClient), | 38 NON_EXPORTED_BASE(public payments::mojom::blink::PaymentRequestClient), |
| 39 public PaymentCompleter, | 39 public PaymentCompleter, |
| 40 public PaymentUpdater, | 40 public PaymentUpdater, |
| 41 public ContextLifecycleObserver, | 41 public ContextLifecycleObserver, |
| 42 public ActiveScriptWrappable<PaymentRequest> { | 42 public ActiveScriptWrappable<PaymentRequest> { |
| 43 DEFINE_WRAPPERTYPEINFO(); | 43 DEFINE_WRAPPERTYPEINFO(); |
| 44 USING_GARBAGE_COLLECTED_MIXIN(PaymentRequest) | 44 USING_GARBAGE_COLLECTED_MIXIN(PaymentRequest) |
| 45 WTF_MAKE_NONCOPYABLE(PaymentRequest); | 45 WTF_MAKE_NONCOPYABLE(PaymentRequest); |
| 46 | 46 |
| 47 public: | 47 public: |
| 48 static PaymentRequest* create(Document&, | 48 static PaymentRequest* create(ExecutionContext*, |
| 49 const HeapVector<PaymentMethodData>&, | 49 const HeapVector<PaymentMethodData>&, |
| 50 const PaymentDetails&, | 50 const PaymentDetails&, |
| 51 ExceptionState&); | 51 ExceptionState&); |
| 52 static PaymentRequest* create(Document&, | 52 static PaymentRequest* create(ExecutionContext*, |
| 53 const HeapVector<PaymentMethodData>&, | 53 const HeapVector<PaymentMethodData>&, |
| 54 const PaymentDetails&, | 54 const PaymentDetails&, |
| 55 const PaymentOptions&, | 55 const PaymentOptions&, |
| 56 ExceptionState&); | 56 ExceptionState&); |
| 57 | 57 |
| 58 virtual ~PaymentRequest(); | 58 virtual ~PaymentRequest(); |
| 59 | 59 |
| 60 ScriptPromise show(ScriptState*); | 60 ScriptPromise show(ScriptState*); |
| 61 ScriptPromise abort(ScriptState*); | 61 ScriptPromise abort(ScriptState*); |
| 62 | 62 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 81 | 81 |
| 82 // PaymentUpdater: | 82 // PaymentUpdater: |
| 83 void onUpdatePaymentDetails(const ScriptValue& detailsScriptValue) override; | 83 void onUpdatePaymentDetails(const ScriptValue& detailsScriptValue) override; |
| 84 void onUpdatePaymentDetailsFailure(const String& error) override; | 84 void onUpdatePaymentDetailsFailure(const String& error) override; |
| 85 | 85 |
| 86 DECLARE_TRACE(); | 86 DECLARE_TRACE(); |
| 87 | 87 |
| 88 void onCompleteTimeoutForTesting(); | 88 void onCompleteTimeoutForTesting(); |
| 89 | 89 |
| 90 private: | 90 private: |
| 91 PaymentRequest(Document&, | 91 PaymentRequest(ExecutionContext*, |
| 92 const HeapVector<PaymentMethodData>&, | 92 const HeapVector<PaymentMethodData>&, |
| 93 const PaymentDetails&, | 93 const PaymentDetails&, |
| 94 const PaymentOptions&, | 94 const PaymentOptions&, |
| 95 ExceptionState&); | 95 ExceptionState&); |
| 96 | 96 |
| 97 // LifecycleObserver: | 97 // LifecycleObserver: |
| 98 void contextDestroyed(ExecutionContext*) override; | 98 void contextDestroyed(ExecutionContext*) override; |
| 99 | 99 |
| 100 // payments::mojom::blink::PaymentRequestClient: | 100 // payments::mojom::blink::PaymentRequestClient: |
| 101 void OnShippingAddressChange( | 101 void OnShippingAddressChange( |
| (...skipping 20 matching lines...) Expand all Loading... |
| 122 Member<ScriptPromiseResolver> m_abortResolver; | 122 Member<ScriptPromiseResolver> m_abortResolver; |
| 123 Member<ScriptPromiseResolver> m_canMakePaymentResolver; | 123 Member<ScriptPromiseResolver> m_canMakePaymentResolver; |
| 124 payments::mojom::blink::PaymentRequestPtr m_paymentProvider; | 124 payments::mojom::blink::PaymentRequestPtr m_paymentProvider; |
| 125 mojo::Binding<payments::mojom::blink::PaymentRequestClient> m_clientBinding; | 125 mojo::Binding<payments::mojom::blink::PaymentRequestClient> m_clientBinding; |
| 126 TaskRunnerTimer<PaymentRequest> m_completeTimer; | 126 TaskRunnerTimer<PaymentRequest> m_completeTimer; |
| 127 }; | 127 }; |
| 128 | 128 |
| 129 } // namespace blink | 129 } // namespace blink |
| 130 | 130 |
| 131 #endif // PaymentRequest_h | 131 #endif // PaymentRequest_h |
| OLD | NEW |