OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef CHROME_BROWSER_UI_VIEWS_PROFILES_USER_MANAGER_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_PROFILES_USER_MANAGER_VIEW_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_PROFILES_USER_MANAGER_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_PROFILES_USER_MANAGER_VIEW_H_ |
7 | 7 |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "chrome/browser/profiles/profile.h" | 9 #include "chrome/browser/profiles/profile.h" |
10 #include "chrome/browser/profiles/profile_window.h" | 10 #include "chrome/browser/profiles/profile_window.h" |
(...skipping 30 matching lines...) Expand all Loading... |
41 // Creates a new UserManagerView instance for the |guest_profile| and | 41 // Creates a new UserManagerView instance for the |guest_profile| and |
42 // shows the |url|. | 42 // shows the |url|. |
43 static void OnGuestProfileCreated(scoped_ptr<UserManagerView> instance, | 43 static void OnGuestProfileCreated(scoped_ptr<UserManagerView> instance, |
44 Profile* guest_profile, | 44 Profile* guest_profile, |
45 const std::string& url); | 45 const std::string& url); |
46 | 46 |
47 // Creates dialog and initializes UI. | 47 // Creates dialog and initializes UI. |
48 void Init(Profile* guest_profile, const GURL& url); | 48 void Init(Profile* guest_profile, const GURL& url); |
49 | 49 |
50 // views::View: | 50 // views::View: |
51 virtual gfx::Size GetPreferredSize() OVERRIDE; | 51 virtual gfx::Size GetPreferredSize() const OVERRIDE; |
52 | 52 |
53 // views::DialogDelegateView: | 53 // views::DialogDelegateView: |
54 virtual bool CanResize() const OVERRIDE; | 54 virtual bool CanResize() const OVERRIDE; |
55 virtual bool CanMaximize() const OVERRIDE; | 55 virtual bool CanMaximize() const OVERRIDE; |
56 virtual base::string16 GetWindowTitle() const OVERRIDE; | 56 virtual base::string16 GetWindowTitle() const OVERRIDE; |
57 virtual int GetDialogButtons() const OVERRIDE; | 57 virtual int GetDialogButtons() const OVERRIDE; |
58 virtual void WindowClosing() OVERRIDE; | 58 virtual void WindowClosing() OVERRIDE; |
59 virtual bool UseNewStyleForThisDialog() const OVERRIDE; | 59 virtual bool UseNewStyleForThisDialog() const OVERRIDE; |
60 | 60 |
61 views::WebView* web_view_; | 61 views::WebView* web_view_; |
62 | 62 |
63 scoped_ptr<AutoKeepAlive> keep_alive_; | 63 scoped_ptr<AutoKeepAlive> keep_alive_; |
64 // An open User Manager window. There can only be one open at a time. This | 64 // An open User Manager window. There can only be one open at a time. This |
65 // is reset to NULL when the window is closed. | 65 // is reset to NULL when the window is closed. |
66 static UserManagerView* instance_; | 66 static UserManagerView* instance_; |
67 | 67 |
68 DISALLOW_COPY_AND_ASSIGN(UserManagerView); | 68 DISALLOW_COPY_AND_ASSIGN(UserManagerView); |
69 }; | 69 }; |
70 | 70 |
71 #endif // CHROME_BROWSER_UI_VIEWS_PROFILES_USER_MANAGER_VIEW_H_ | 71 #endif // CHROME_BROWSER_UI_VIEWS_PROFILES_USER_MANAGER_VIEW_H_ |
OLD | NEW |