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

Unified Diff: chrome/browser/ui/user_manager.cc

Issue 2552473002: Display error message when user try to open a locked supervised user profile when force-sign-in is … (Closed)
Patch Set: refacotr 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
Index: chrome/browser/ui/user_manager.cc
diff --git a/chrome/browser/ui/user_manager.cc b/chrome/browser/ui/user_manager.cc
index dc2b0e3df0a2858a2d1dd0a7fb7235689c90bb0a..5541593e6f18d37d5b3ef58416cde2eb278266e1 100644
--- a/chrome/browser/ui/user_manager.cc
+++ b/chrome/browser/ui/user_manager.cc
@@ -16,17 +16,18 @@ bool AddToSet(std::set<content::WebContents*>* content_set,
} // namespace
-UserManager::BaseReauthDialogDelegate::BaseReauthDialogDelegate()
+UserManagerDialog::BaseDialogDelegate::BaseDialogDelegate()
: guest_web_contents_(nullptr) {}
-bool UserManager::BaseReauthDialogDelegate::HandleContextMenu(
+bool UserManagerDialog::BaseDialogDelegate::HandleContextMenu(
const content::ContextMenuParams& params) {
// Ignores context menu.
return true;
}
-void UserManager::BaseReauthDialogDelegate::LoadingStateChanged(
- content::WebContents* source, bool to_different_document) {
+void UserManagerDialog::BaseDialogDelegate::LoadingStateChanged(
+ content::WebContents* source,
+ bool to_different_document) {
if (source->IsLoading() || guest_web_contents_)
return;

Powered by Google App Engine
This is Rietveld 408576698