Chromium Code Reviews| Index: third_party/WebKit/public/platform/modules/payments/WebPaymentCurrencyAmount.h |
| diff --git a/third_party/WebKit/public/platform/modules/payments/WebPaymentCurrencyAmount.h b/third_party/WebKit/public/platform/modules/payments/WebPaymentCurrencyAmount.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..a681260229dece4f06a65e11d5ec5b435ac508ad |
| --- /dev/null |
| +++ b/third_party/WebKit/public/platform/modules/payments/WebPaymentCurrencyAmount.h |
| @@ -0,0 +1,20 @@ |
| +// 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 WebPaymentCurrencyAmount_h |
| +#define WebPaymentCurrencyAmount_h |
| + |
| +#include "public/platform/WebString.h" |
| + |
| +namespace blink { |
| + |
|
please use gerrit instead
2016/11/29 15:10:36
// https://w3c.github.io/browser-payment-api/#paym
zino
2016/11/30 16:09:33
Done.
|
| +struct WebPaymentCurrencyAmount { |
| + WebString currency; |
| + WebString value; |
| + WebString currencySystem; |
| +}; |
| + |
| +} // namespace blink |
| + |
| +#endif // WebPaymentCurrencyAmount_h |