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

Unified Diff: third_party/google_input_tools/third_party/closure_library/closure/goog/promise/resolver.js

Issue 1257313003: Update Google Input Tools (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Free up grd resources. Created 5 years, 5 months 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
Index: third_party/google_input_tools/third_party/closure_library/closure/goog/promise/resolver.js
diff --git a/third_party/google_input_tools/third_party/closure_library/closure/goog/promise/resolver.js b/third_party/google_input_tools/third_party/closure_library/closure/goog/promise/resolver.js
index e27c3006185de57cbb6a8639c4c8e706a03216e0..54c2d912804b33ed7dbe0de5aacaa5f6f026b2e0 100644
--- a/third_party/google_input_tools/third_party/closure_library/closure/goog/promise/resolver.js
+++ b/third_party/google_input_tools/third_party/closure_library/closure/goog/promise/resolver.js
@@ -29,20 +29,20 @@ goog.promise.Resolver = function() {};
/**
* The promise that created this resolver.
- * @const {!goog.Promise.<TYPE>}
+ * @type {!goog.Promise<TYPE>}
*/
goog.promise.Resolver.prototype.promise;
/**
* Resolves this resolver with the specified value.
- * @const {function((TYPE|goog.Promise.<TYPE>|Thenable)=)}
+ * @type {function((TYPE|goog.Promise<TYPE>|Thenable)=)}
*/
goog.promise.Resolver.prototype.resolve;
/**
* Rejects this resolver with the specified reason.
- * @const {function(*): void}
+ * @type {function(*=): void}
*/
goog.promise.Resolver.prototype.reject;

Powered by Google App Engine
This is Rietveld 408576698