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

Unified Diff: chrome/browser/ui/views/tab_dialogs_views.cc

Issue 2625813003: MacViews: Allow the toolkit-views Enterprise Signin Confirmation Dialog to be used (Closed)
Patch Set: Rebase (DID NOT LAND) Created 3 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
« no previous file with comments | « chrome/browser/ui/views/tab_dialogs_views.h ('k') | chrome/test/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/tab_dialogs_views.cc
diff --git a/chrome/browser/ui/views/tab_dialogs_views.cc b/chrome/browser/ui/views/tab_dialogs_views.cc
index 46177c1f839afbac5ff38685a37f91210bcdd888..fa36944f43e123d74f8fe6640d9ea9dc15e15284 100644
--- a/chrome/browser/ui/views/tab_dialogs_views.cc
+++ b/chrome/browser/ui/views/tab_dialogs_views.cc
@@ -53,10 +53,10 @@ void TabDialogsViews::ShowProfileSigninConfirmation(
Browser* browser,
Profile* profile,
const std::string& username,
- ui::ProfileSigninConfirmationDelegate* delegate) {
+ std::unique_ptr<ui::ProfileSigninConfirmationDelegate> delegate) {
#if !defined(OS_CHROMEOS)
- ProfileSigninConfirmationDialogViews::ShowDialog(
- browser, profile, username, delegate);
+ ProfileSigninConfirmationDialogViews::ShowDialog(browser, profile, username,
+ std::move(delegate));
#else
NOTREACHED();
#endif
« no previous file with comments | « chrome/browser/ui/views/tab_dialogs_views.h ('k') | chrome/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698