Index: chrome/browser/ui/cocoa/profiles/user_manager_mac.h |
diff --git a/chrome/browser/ui/cocoa/profiles/user_manager_mac.h b/chrome/browser/ui/cocoa/profiles/user_manager_mac.h |
index e71006271f43fc891082233ea50589b5dccc426d..7256310753b28e29f096a519f1adcb5014f24f53 100644 |
--- a/chrome/browser/ui/cocoa/profiles/user_manager_mac.h |
+++ b/chrome/browser/ui/cocoa/profiles/user_manager_mac.h |
@@ -22,35 +22,17 @@ class WebContents; |
// Dialog widget that contains the Desktop User Manager webui. |
class UserManagerMac { |
public: |
- // Shows the User Manager or re-activates an existing one, focusing the |
- // profile given by |profile_path_to_focus|. Based on the value of |
- // |tutorial_mode|, a tutorial could be shown, in which case |
- // |profile_path_to_focus| is ignored. |
- static void Show(const base::FilePath& profile_path_to_focus, |
- profiles::UserManagerTutorialMode tutorial_mode); |
- |
- // Hide the User Manager. |
- static void Hide(); |
- |
- // Returns whether or not the User Manager is showing. |
- static bool IsShowing(); |
- |
// Called by the cocoa window controller when its window closes and the |
// controller destroyed itself. Deletes the instance. |
void WindowWasClosed(); |
- private: |
- explicit UserManagerMac(Profile* profile); |
- virtual ~UserManagerMac(); |
- |
// Creates a new UserManagerMac instance for the |guest_profile| and |
// shows the |url|. |
static void OnGuestProfileCreated(Profile* guest_profile, |
const std::string& url); |
- |
- // An open User Manager window. There can only be one open at a time. This |
- // is reset to NULL when the window is closed. |
- static UserManagerMac* instance_; // Weak. |
+ private: |
+ explicit UserManagerMac(Profile* profile); |
+ virtual ~UserManagerMac(); |
// Controller of the window. |
base::scoped_nsobject<UserManagerWindowController> window_controller_; |