blob: dd1c1c6cb19fb6df3b840bd91b5fde03bb7445b4 (
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
61
62
63
64
65
66
67
68
|
// Copyright 2014 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_PROFILES_USER_MANAGER_MAC_H_
#define CHROME_BROWSER_UI_COCOA_PROFILES_USER_MANAGER_MAC_H_
#import <Cocoa/Cocoa.h>
#include "base/mac/scoped_nsobject.h"
#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_window.h"
@class ReauthDialogWindowController;
@class UserManagerWindowController;
namespace content {
class NavigationController;
class WebContents;
}
// Dialog widget that contains the Desktop User Manager webui. This object
// should always be created from the UserManager::Show() method. Note that only
// one User Manager will exist at a time.
class UserManagerMac {
public:
// Called by the cocoa window controller when its window closes and the
// controller destroyed itself. Deletes the instance.
void WindowWasClosed();
// Called from the UserManager class once the |system_profile| is ready. Will
// construct a UserManagerMac object and show |url|.
static void OnSystemProfileCreated(const base::Time& start_time,
Profile* system_profile,
const std::string& url);
UserManagerWindowController* window_controller() {
return window_controller_.get();
}
void set_user_manager_started_showing(
const base::Time& user_manager_started_showing) {
user_manager_started_showing_ = user_manager_started_showing;
}
void LogTimeToOpen();
void ShowReauthDialog(content::BrowserContext* browser_context,
const std::string& email);
void CloseReauthDialog();
private:
explicit UserManagerMac(Profile* profile);
virtual ~UserManagerMac();
// Controller of the window.
base::scoped_nsobject<UserManagerWindowController> window_controller_;
base::scoped_nsobject<ReauthDialogWindowController> reauth_window_;
base::Time user_manager_started_showing_;
DISALLOW_COPY_AND_ASSIGN(UserManagerMac);
};
#endif // CHROME_BROWSER_UI_COCOA_PROFILES_USER_MANAGER_MAC_H_
|