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

Unified Diff: chrome/browser/ui/views/profiles/user_manager_view.cc

Issue 2899083003: Delete unused tutorial code from profile switcher/user manager. (Closed)
Patch Set: delete UserManagerTutorialMode enum Created 3 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
Index: chrome/browser/ui/views/profiles/user_manager_view.cc
diff --git a/chrome/browser/ui/views/profiles/user_manager_view.cc b/chrome/browser/ui/views/profiles/user_manager_view.cc
index b86fe47615a61a3e872e0c58745d1ea9cad00ca9..80728d06e6107d3d8b029d2187f865bf2643a24a 100644
--- a/chrome/browser/ui/views/profiles/user_manager_view.cc
+++ b/chrome/browser/ui/views/profiles/user_manager_view.cc
@@ -135,7 +135,6 @@ void UserManagerProfileDialogDelegate::OnDialogDestroyed() {
// static
void UserManager::Show(
const base::FilePath& profile_path_to_focus,
- profiles::UserManagerTutorialMode tutorial_mode,
profiles::UserManagerAction user_manager_action) {
DCHECK(profile_path_to_focus != ProfileManager::GetGuestProfilePath());
@@ -165,7 +164,7 @@ void UserManager::Show(
UserManagerView* user_manager = new UserManagerView();
user_manager->set_user_manager_started_showing(base::Time::Now());
profiles::CreateSystemProfileForUserManager(
- profile_path_to_focus, tutorial_mode, user_manager_action,
+ profile_path_to_focus, user_manager_action,
base::Bind(&UserManagerView::OnSystemProfileCreated,
base::Passed(base::WrapUnique(user_manager)),
base::Owned(new base::AutoReset<bool>(

Powered by Google App Engine
This is Rietveld 408576698