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

Unified Diff: ui/file_manager/file_manager/common/js/importer_common.js

Issue 888693002: Correctly handle out of storage space and "actively importing" states in controller. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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: ui/file_manager/file_manager/common/js/importer_common.js
diff --git a/ui/file_manager/file_manager/common/js/importer_common.js b/ui/file_manager/file_manager/common/js/importer_common.js
index 07d0a26053258bbb97f3c5697d3346da00f5c9db..8142d07bba0fa47958e2ee805e02e3304383bfa6 100644
--- a/ui/file_manager/file_manager/common/js/importer_common.js
+++ b/ui/file_manager/file_manager/common/js/importer_common.js
@@ -218,7 +218,7 @@ importer.Resolver = function() {
/** @private {boolean} */
this.settled_ = false;
- /** @private {function(T)} */
+ /** @private {function(T=)} */
this.resolve_;
/** @private {function(*=)} */
@@ -240,7 +240,7 @@ importer.Resolver = function() {
importer.Resolver.prototype = /** @struct */ {
/**
- * @return {function(T)}
+ * @return {function(T=)}
* @template T
*/
get resolve() {

Powered by Google App Engine
This is Rietveld 408576698