Index: third_party/WebKit/public/platform/modules/payments/WebPaymentAppRequest.h |
diff --git a/third_party/WebKit/public/platform/modules/payments/WebPaymentAppRequest.h b/third_party/WebKit/public/platform/modules/payments/WebPaymentAppRequest.h |
deleted file mode 100644 |
index 2a98a8c6a2208297979c699a0fc4d142d2f71262..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/public/platform/modules/payments/WebPaymentAppRequest.h |
+++ /dev/null |
@@ -1,29 +0,0 @@ |
-// Copyright 2016 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#ifndef WebPaymentAppRequest_h |
-#define WebPaymentAppRequest_h |
- |
-#include "public/platform/WebString.h" |
-#include "public/platform/WebVector.h" |
-#include "public/platform/modules/payments/WebPaymentDetailsModifier.h" |
-#include "public/platform/modules/payments/WebPaymentItem.h" |
-#include "public/platform/modules/payments/WebPaymentMethodData.h" |
- |
-namespace blink { |
- |
-// https://w3c.github.io/webpayments-payment-apps-api/#idl-def-paymentapprequest |
-struct WebPaymentAppRequest { |
- WebString top_level_origin; |
- WebString payment_request_origin; |
- WebString payment_request_id; |
- WebVector<WebPaymentMethodData> method_data; |
- WebPaymentItem total; |
- WebVector<WebPaymentDetailsModifier> modifiers; |
- WebString instrument_key; |
-}; |
- |
-} // namespace blink |
- |
-#endif // WebPaymentAppRequest_h |