| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 /* global PaymentRequest:false */ | 7 /* global PaymentRequest:false */ |
| 8 /* global print:false */ | 8 /* global print:false */ |
| 9 | 9 |
| 10 /** | 10 /** |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 print(error); | 34 print(error); |
| 35 }); | 35 }); |
| 36 }) | 36 }) |
| 37 .catch(function(error) { | 37 .catch(function(error) { |
| 38 print(error); | 38 print(error); |
| 39 }); | 39 }); |
| 40 } catch (error) { | 40 } catch (error) { |
| 41 print(error.message); | 41 print(error.message); |
| 42 } | 42 } |
| 43 } | 43 } |
| OLD | NEW |