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

Side by Side Diff: chrome/browser/ui/gtk/user_manager_gtk.cc

Issue 199533004: [Mac, Win] Show a user manager tutorial once per profile. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rachel nits Created 6 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <gtk/gtk.h> 5 #include <gtk/gtk.h>
6 6
7 #include "chrome/browser/ui/browser_dialogs.h" 7 #include "chrome/browser/ui/browser_dialogs.h"
8 8
9 namespace chrome { 9 namespace chrome {
10 10
11 // Declared in browser_dialogs.h so others don't have to depend on this header. 11 // Declared in browser_dialogs.h so others don't have to depend on this header.
12 // TODO(noms): Add implementation when the User Manager dialog is implemented. 12 // TODO(noms): Add implementation when the User Manager dialog is implemented.
13 void ShowUserManager(const base::FilePath& profile_path_to_focus) { 13 void ShowUserManager(const base::FilePath& profile_path_to_focus) {
14 NOTIMPLEMENTED(); 14 NOTIMPLEMENTED();
15 } 15 }
16 16
17 void ShowUserManagerWithTutorial(profiles::UserManagerTutorialMode tutorial) {
18 NOTIMPLEMENTED();
19 }
20
17 void HideUserManager() { 21 void HideUserManager() {
18 NOTIMPLEMENTED(); 22 NOTIMPLEMENTED();
19 } 23 }
20 24
21 } // namespace chrome 25 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698