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

Side by Side Diff: third_party/WebKit/public/platform/modules/payments/payment_request.mojom

Issue 1931233002: Implement PaymentRequestUpdateEvent (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@explicit-shipping
Patch Set: Rebase Created 4 years, 7 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 [JavaPackage="org.chromium.mojom.payments"] 5 [JavaPackage="org.chromium.mojom.payments"]
6 module blink.mojom; 6 module blink.mojom;
7 7
8 // The shipping address that the browser process provides to the renderer 8 // The shipping address that the browser process provides to the renderer
9 // process. Built either by the browser or a payment app. 9 // process. Built either by the browser or a payment app.
10 struct ShippingAddress { 10 struct ShippingAddress {
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 // A JSON string built by the renderer from a JavaScript object that the 96 // A JSON string built by the renderer from a JavaScript object that the
97 // merchant website provides. The renderer uses 97 // merchant website provides. The renderer uses
98 // blink::JSONObject::toJSONString() to generate this string. The browser 98 // blink::JSONObject::toJSONString() to generate this string. The browser
99 // parses the string via base::JSONParser and passes a part of the JSON 99 // parses the string via base::JSONParser and passes a part of the JSON
100 // object to the payment app, for example Android Pay. There's no one 100 // object to the payment app, for example Android Pay. There's no one
101 // format for this object, so richer types cannot be used. A simple 101 // format for this object, so richer types cannot be used. A simple
102 // example: 102 // example:
103 // 103 //
104 // {"https://android.com/pay": {"gateway": "stripe"}} 104 // {"https://android.com/pay": {"gateway": "stripe"}}
105 string stringified_data); 105 string stringified_data);
106 UpdateWith(PaymentDetails details);
106 Abort(); 107 Abort();
107 Complete(bool success); 108 Complete(bool success);
108 }; 109 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/payments/ShippingAddress.idl ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698