Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(189)

Side by Side Diff: third_party/WebKit/Source/modules/payments/PaymentRequest.cpp

Issue 2604113002: Remove mojo::WTFArray. (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 #include "modules/payments/PaymentRequest.h" 5 #include "modules/payments/PaymentRequest.h"
6 6
7 #include "bindings/core/v8/ExceptionState.h" 7 #include "bindings/core/v8/ExceptionState.h"
8 #include "bindings/core/v8/ScriptPromiseResolver.h" 8 #include "bindings/core/v8/ScriptPromiseResolver.h"
9 #include "bindings/core/v8/ScriptState.h" 9 #include "bindings/core/v8/ScriptState.h"
10 #include "bindings/core/v8/V8StringResource.h" 10 #include "bindings/core/v8/V8StringResource.h"
(...skipping 10 matching lines...) Expand all
21 #include "modules/payments/AndroidPayMethodData.h" 21 #include "modules/payments/AndroidPayMethodData.h"
22 #include "modules/payments/AndroidPayTokenization.h" 22 #include "modules/payments/AndroidPayTokenization.h"
23 #include "modules/payments/HTMLIFrameElementPayments.h" 23 #include "modules/payments/HTMLIFrameElementPayments.h"
24 #include "modules/payments/PaymentAddress.h" 24 #include "modules/payments/PaymentAddress.h"
25 #include "modules/payments/PaymentItem.h" 25 #include "modules/payments/PaymentItem.h"
26 #include "modules/payments/PaymentRequestUpdateEvent.h" 26 #include "modules/payments/PaymentRequestUpdateEvent.h"
27 #include "modules/payments/PaymentResponse.h" 27 #include "modules/payments/PaymentResponse.h"
28 #include "modules/payments/PaymentShippingOption.h" 28 #include "modules/payments/PaymentShippingOption.h"
29 #include "modules/payments/PaymentsValidators.h" 29 #include "modules/payments/PaymentsValidators.h"
30 #include "mojo/public/cpp/bindings/interface_request.h" 30 #include "mojo/public/cpp/bindings/interface_request.h"
31 #include "mojo/public/cpp/bindings/wtf_array.h"
32 #include "platform/RuntimeEnabledFeatures.h" 31 #include "platform/RuntimeEnabledFeatures.h"
33 #include "platform/mojo/MojoHelper.h" 32 #include "platform/mojo/MojoHelper.h"
34 #include "public/platform/InterfaceProvider.h" 33 #include "public/platform/InterfaceProvider.h"
35 #include "public/platform/Platform.h" 34 #include "public/platform/Platform.h"
36 #include "public/platform/WebTraceLocation.h" 35 #include "public/platform/WebTraceLocation.h"
37 #include "wtf/HashSet.h" 36 #include "wtf/HashSet.h"
38 #include <stddef.h> 37 #include <stddef.h>
39 #include <utility> 38 #include <utility>
40 39
41 using payments::mojom::blink::CanMakePaymentQueryResult; 40 using payments::mojom::blink::CanMakePaymentQueryResult;
(...skipping 878 matching lines...) Expand 10 before | Expand all | Expand 10 after
920 m_completeResolver.clear(); 919 m_completeResolver.clear();
921 m_showResolver.clear(); 920 m_showResolver.clear();
922 m_abortResolver.clear(); 921 m_abortResolver.clear();
923 m_canMakePaymentResolver.clear(); 922 m_canMakePaymentResolver.clear();
924 if (m_clientBinding.is_bound()) 923 if (m_clientBinding.is_bound())
925 m_clientBinding.Close(); 924 m_clientBinding.Close();
926 m_paymentProvider.reset(); 925 m_paymentProvider.reset();
927 } 926 }
928 927
929 } // namespace blink 928 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698