| OLD | NEW |
| 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 /** | 5 /** |
| 6 * @fileoverview PromiseResolver is a helper class that allows creating a | 6 * @fileoverview PromiseResolver is a helper class that allows creating a |
| 7 * Promise that will be fulfilled (resolved or rejected) some time later. | 7 * Promise that will be fulfilled (resolved or rejected) some time later. |
| 8 * | 8 * |
| 9 * Example: | 9 * Example: |
| 10 * var resolver = new PromiseResolver(); | 10 * var resolver = new PromiseResolver(); |
| 11 * resolver.promise.then(function(result) { | 11 * resolver.promise.then(function(result) { |
| 12 * console.log('resolved with', result); | 12 * console.log('resolved with', result); |
| 13 * }); | 13 * }); |
| 14 * ... | 14 * ... |
| 15 * ... | 15 * ... |
| 16 * resolver.resolve({hello: 'world'}); | 16 * resolver.resolve({hello: 'world'}); |
| 17 */ | 17 */ |
| 18 | 18 |
| 19 /** | 19 /** @constructor */ |
| 20 * @constructor | |
| 21 */ | |
| 22 function PromiseResolver() { | 20 function PromiseResolver() { |
| 23 /** @type {!Function} */ | 21 /** @type {!Function} */ |
| 24 this.resolve; | 22 this.resolve; |
| 25 | 23 |
| 26 /** @type {!Function} */ | 24 /** @type {!Function} */ |
| 27 this.reject; | 25 this.reject; |
| 28 | 26 |
| 29 /** @type {!Promise} */ | 27 /** @type {!Promise} */ |
| 30 this.promise = new Promise(function(resolve, reject) { | 28 this.promise = new Promise(function(resolve, reject) { |
| 31 this.resolve = resolve; | 29 this.resolve = resolve; |
| 32 this.reject = reject; | 30 this.reject = reject; |
| 33 }.bind(this)); | 31 }.bind(this)); |
| 34 } | 32 } |
| OLD | NEW |