blob: 0ce144e8bc21a76ddeef68e64a41269db25d152d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_COCOA_USER_MANAGER_MAC_H_
#define CHROME_BROWSER_UI_COCOA_USER_MANAGER_MAC_H_
#import <Cocoa/Cocoa.h>
#include "base/mac/scoped_nsobject.h"
#include "base/memory/scoped_ptr.h"
#include "chrome/browser/profiles/profile.h"
class UserManagerMac;
@class UserManagerWindowController;
namespace content {
class NavigationController;
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|.
static void Show(const base::FilePath& profile_path_to_focus);
// 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();
// If the |guest_profile| has been initialized succesfully (according to
// |status|), creates a new UserManagerMac instance with the user with path
// |profile_path_to_focus| focused.
static void OnGuestProfileCreated(const base::FilePath& profile_path_to_focus,
Profile* guest_profile,
Profile::CreateStatus status);
// 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.
// Controller of the window.
base::scoped_nsobject<UserManagerWindowController> window_controller_;
DISALLOW_COPY_AND_ASSIGN(UserManagerMac);
};
#endif // CHROME_BROWSER_UI_COCOA_USER_MANAGER_MAC_H_
|