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

Unified Diff: ui/file_manager/file_manager/foreground/js/ui/banners.js

Issue 2578863003: Files app: Handle chrome.runtime.lastError for chrome.storage API calls. (Closed)
Patch Set: Append chrome.runtime.lastError.message for error messages. Created 4 years 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 | « ui/file_manager/file_manager/foreground/js/folder_shortcuts_data_model.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/file_manager/file_manager/foreground/js/ui/banners.js
diff --git a/ui/file_manager/file_manager/foreground/js/ui/banners.js b/ui/file_manager/file_manager/foreground/js/ui/banners.js
index b8ae8e3884b0840866558194e33a719e7cb82520..f1ae386638380017ac653304bb984fdd0e7cadef 100644
--- a/ui/file_manager/file_manager/foreground/js/ui/banners.js
+++ b/ui/file_manager/file_manager/foreground/js/ui/banners.js
@@ -52,6 +52,11 @@ function Banners(
DOWNLOADS_WARNING_DISMISSED_KEY
],
function(values) {
+ if (chrome.runtime.lastError) {
+ reject('Failed to load banner data from chrome.storage: ' +
+ chrome.runtime.lastError.message);
+ return;
+ }
this.welcomeHeaderCounter_ =
parseInt(values[WELCOME_HEADER_COUNTER_KEY], 10) || 0;
this.warningDismissedCounter_ =
@@ -75,7 +80,9 @@ function Banners(
resolve();
}.bind(this));
}.bind(this))
- ]);
+ ]).catch(function(error) {
+ console.error(error);
+ });
// Authentication failed banner.
this.authFailedBanner_ =
« no previous file with comments | « ui/file_manager/file_manager/foreground/js/folder_shortcuts_data_model.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698