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

Unified Diff: chrome/test/data/webui/md_user_manager/test_profile_browser_proxy.js

Issue 2025433002: MD User Manager: Display error message when all profiles are locked. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comment Created 4 years, 7 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
« no previous file with comments | « chrome/browser/ui/webui/signin/user_manager_screen_handler.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/webui/md_user_manager/test_profile_browser_proxy.js
diff --git a/chrome/test/data/webui/md_user_manager/test_profile_browser_proxy.js b/chrome/test/data/webui/md_user_manager/test_profile_browser_proxy.js
index 8b5e009310a070b2f1779f86209c51be7efb7911..0dcb4356a005739e81b9de9460dbbd86c1b9fc5a 100644
--- a/chrome/test/data/webui/md_user_manager/test_profile_browser_proxy.js
+++ b/chrome/test/data/webui/md_user_manager/test_profile_browser_proxy.js
@@ -19,6 +19,7 @@ var TestProfileBrowserProxy = function() {
'initializeUserManager',
'launchUser',
'getExistingSupervisedUsers',
+ 'areAllProfilesLocked',
]);
/** @private {!Array<string>} */
@@ -110,4 +111,10 @@ TestProfileBrowserProxy.prototype = {
this.methodCalled('getExistingSupervisedUsers');
return Promise.resolve(this.existingSupervisedUsers_);
},
+
+ /** @override */
+ areAllProfilesLocked: function() {
+ this.methodCalled('areAllProfilesLocked');
+ return Promise.resolve(false);
+ },
};
« no previous file with comments | « chrome/browser/ui/webui/signin/user_manager_screen_handler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698