| OLD | NEW |
| (Empty) |
| 1 /* | |
| 2 * Copyright 2016 The Chromium Authors. All rights reserved. | |
| 3 * Use of this source code is governed by a BSD-style license that can be | |
| 4 * found in the LICENSE file. | |
| 5 */ | |
| 6 | |
| 7 /* global PaymentRequest:false */ | |
| 8 /* global print:false */ | |
| 9 | |
| 10 /** | |
| 11 * Checks for existence of Bob Pay or a complete credit card. | |
| 12 */ | |
| 13 function buy() { // eslint-disable-line no-unused-vars | |
| 14 try { | |
| 15 var request = new PaymentRequest( | |
| 16 [{supportedMethods: ['https://bobpay.com', 'visa']}], | |
| 17 {total: {label: 'Total', amount: {currency: 'USD', value: '5.00'}}}); | |
| 18 request.canMakePayment() | |
| 19 .then(function(result) { | |
| 20 print(result); | |
| 21 }) | |
| 22 .catch(function(error) { | |
| 23 print(error); | |
| 24 }); | |
| 25 } catch (error) { | |
| 26 print(error.message); | |
| 27 } | |
| 28 } | |
| OLD | NEW |