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

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

Issue 692343002: Revert of [DevTools] Extract platform module. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
deleted file mode 100644
index df028dfb5fa86c856cf4c8c371eb9313779e0225..0000000000000000000000000000000000000000
--- a/Source/devtools/front_end/platform/Promise.js
+++ /dev/null
@@ -1,57 +0,0 @@
-// 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