| Index: chrome/browser/profiles/profile_window.cc
 | 
| diff --git a/chrome/browser/profiles/profile_window.cc b/chrome/browser/profiles/profile_window.cc
 | 
| index ec6a9e2efee8a8c5ac408b44c68c24352a8290e6..479b614595ecdb32ad4b819899752b2655a54386 100644
 | 
| --- a/chrome/browser/profiles/profile_window.cc
 | 
| +++ b/chrome/browser/profiles/profile_window.cc
 | 
| @@ -524,14 +524,4 @@ bool ShouldShowWelcomeUpgradeTutorial(
 | 
|           show_count != signin_ui_util::kUpgradeWelcomeTutorialShowMax;
 | 
|  }
 | 
|  
 | 
| -bool ShouldShowRightClickTutorial(Profile* profile) {
 | 
| -  PrefService* local_state = g_browser_process->local_state();
 | 
| -  const bool dismissed = local_state->GetBoolean(
 | 
| -      prefs::kProfileAvatarRightClickTutorialDismissed);
 | 
| -
 | 
| -  // Don't show the tutorial if it's already been dismissed or if right-clicking
 | 
| -  // wouldn't show any targets.
 | 
| -  return !dismissed && HasProfileSwitchTargets(profile);
 | 
| -}
 | 
| -
 | 
|  }  // namespace profiles
 | 
| 
 |