| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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/PaymentRequestRespondWithObserver.h" | 5 #include "modules/payments/PaymentRequestRespondWithObserver.h" |
| 6 | 6 |
| 7 #include <v8.h> | 7 #include <v8.h> |
| 8 #include "bindings/core/v8/ScriptValue.h" | 8 #include "bindings/core/v8/ScriptValue.h" |
| 9 #include "bindings/core/v8/V8Binding.h" | 9 #include "bindings/core/v8/V8BindingForCore.h" |
| 10 #include "bindings/modules/v8/V8PaymentAppResponse.h" | 10 #include "bindings/modules/v8/V8PaymentAppResponse.h" |
| 11 #include "core/dom/ExecutionContext.h" | 11 #include "core/dom/ExecutionContext.h" |
| 12 #include "core/inspector/ConsoleMessage.h" | 12 #include "core/inspector/ConsoleMessage.h" |
| 13 #include "modules/payments/PaymentAppResponse.h" | 13 #include "modules/payments/PaymentAppResponse.h" |
| 14 #include "modules/serviceworkers/ServiceWorkerGlobalScopeClient.h" | 14 #include "modules/serviceworkers/ServiceWorkerGlobalScopeClient.h" |
| 15 #include "modules/serviceworkers/WaitUntilObserver.h" | 15 #include "modules/serviceworkers/WaitUntilObserver.h" |
| 16 #include "public/platform/modules/payments/WebPaymentAppResponse.h" | 16 #include "public/platform/modules/payments/WebPaymentAppResponse.h" |
| 17 | 17 |
| 18 namespace blink { | 18 namespace blink { |
| 19 namespace { | 19 namespace { |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 ExecutionContext* context, | 124 ExecutionContext* context, |
| 125 int event_id, | 125 int event_id, |
| 126 WaitUntilObserver* observer) | 126 WaitUntilObserver* observer) |
| 127 : RespondWithObserver(context, event_id, observer) {} | 127 : RespondWithObserver(context, event_id, observer) {} |
| 128 | 128 |
| 129 DEFINE_TRACE(PaymentRequestRespondWithObserver) { | 129 DEFINE_TRACE(PaymentRequestRespondWithObserver) { |
| 130 RespondWithObserver::Trace(visitor); | 130 RespondWithObserver::Trace(visitor); |
| 131 } | 131 } |
| 132 | 132 |
| 133 } // namespace blink | 133 } // namespace blink |
| OLD | NEW |