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

Unified Diff: Source/devtools/front_end/platform/Promise.js

Issue 673163004: [DevTools] Extract platform module. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed bug in hosted mode Created 6 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/devtools/front_end/platform/DOMExtension.js ('k') | Source/devtools/front_end/platform/module.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/platform/Promise.js
diff --git a/Source/devtools/front_end/platform/Promise.js b/Source/devtools/front_end/platform/Promise.js
new file mode 100644
index 0000000000000000000000000000000000000000..df028dfb5fa86c856cf4c8c371eb9313779e0225
--- /dev/null
+++ b/Source/devtools/front_end/platform/Promise.js
@@ -0,0 +1,57 @@
+// Copyright 2014 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.
+
+/**
+ * @param {string} error
+ * @return {!Promise.<T>}
+ * @template T
+ */
+Promise.rejectWithError = function(error)
+{
+ return Promise.reject(new Error(error));
+}
+
+/**
+ * @param {function((T|undefined))} callback
+ * @return {!Promise.<T>}
+ * @template T
+ */
+Promise.prototype.thenOrCatch = function(callback)
+{
+ return this.then(callback, reject.bind(this));
+
+ /**
+ * @param {*} e
+ * @this {Promise}
+ */
+ function reject(e)
+ {
+ this._reportError(e);
+ callback(undefined);
+ }
+}
+
+Promise.prototype.done = function()
+{
+ this.catchAndReport();
+}
+
+/**
+ * @return {!Promise}
+ */
+Promise.prototype.catchAndReport = function()
+{
+ return this.catch(this._reportError.bind(this));
+}
+
+/**
+ * @param {*} e
+ */
+Promise.prototype._reportError = function(e)
+{
+ if (e instanceof Error)
+ console.error(e.stack);
+ else
+ console.error(e);
+}
« no previous file with comments | « Source/devtools/front_end/platform/DOMExtension.js ('k') | Source/devtools/front_end/platform/module.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698