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

Side by Side Diff: chrome/browser/chromeos/login/webui_login_display.h

Issue 10832019: Speed up custom wallpaper switching time and wallpaper manager code refactor (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix compile Created 8 years, 4 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_CHROMEOS_LOGIN_WEBUI_LOGIN_DISPLAY_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_LOGIN_DISPLAY_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_LOGIN_DISPLAY_H_ 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_LOGIN_DISPLAY_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 // SigninScreenHandlerDelegate implementation: 43 // SigninScreenHandlerDelegate implementation:
44 virtual gfx::NativeWindow GetNativeWindow() const OVERRIDE; 44 virtual gfx::NativeWindow GetNativeWindow() const OVERRIDE;
45 virtual void CompleteLogin(const std::string& username, 45 virtual void CompleteLogin(const std::string& username,
46 const std::string& password) OVERRIDE; 46 const std::string& password) OVERRIDE;
47 virtual void Login(const std::string& username, 47 virtual void Login(const std::string& username,
48 const std::string& password) OVERRIDE; 48 const std::string& password) OVERRIDE;
49 virtual void LoginAsDemoUser() OVERRIDE; 49 virtual void LoginAsDemoUser() OVERRIDE;
50 virtual void LoginAsGuest() OVERRIDE; 50 virtual void LoginAsGuest() OVERRIDE;
51 virtual void Signout() OVERRIDE; 51 virtual void Signout() OVERRIDE;
52 virtual void CreateAccount() OVERRIDE; 52 virtual void CreateAccount() OVERRIDE;
53 virtual void UserDeselected() OVERRIDE; 53 virtual void OnUserDeselected() OVERRIDE;
54 virtual void UserSelected(const std::string& username) OVERRIDE; 54 virtual void OnUserSelected(const std::string& username) OVERRIDE;
55 virtual void RemoveUser(const std::string& username) OVERRIDE; 55 virtual void RemoveUser(const std::string& username) OVERRIDE;
56 virtual void ShowEnterpriseEnrollmentScreen() OVERRIDE; 56 virtual void ShowEnterpriseEnrollmentScreen() OVERRIDE;
57 virtual void SetWebUIHandler( 57 virtual void SetWebUIHandler(
58 LoginDisplayWebUIHandler* webui_handler) OVERRIDE; 58 LoginDisplayWebUIHandler* webui_handler) OVERRIDE;
59 virtual void ShowSigninScreenForCreds(const std::string& username, 59 virtual void ShowSigninScreenForCreds(const std::string& username,
60 const std::string& password); 60 const std::string& password);
61 virtual const UserList& GetUsers() const OVERRIDE; 61 virtual const UserList& GetUsers() const OVERRIDE;
62 virtual bool IsShowGuest() const OVERRIDE; 62 virtual bool IsShowGuest() const OVERRIDE;
63 virtual bool IsShowUsers() const OVERRIDE; 63 virtual bool IsShowUsers() const OVERRIDE;
64 virtual bool IsShowNewUser() const OVERRIDE; 64 virtual bool IsShowNewUser() const OVERRIDE;
(...skipping 14 matching lines...) Expand all
79 79
80 // Reference to the WebUI handling layer for the login screen 80 // Reference to the WebUI handling layer for the login screen
81 LoginDisplayWebUIHandler* webui_handler_; 81 LoginDisplayWebUIHandler* webui_handler_;
82 82
83 DISALLOW_COPY_AND_ASSIGN(WebUILoginDisplay); 83 DISALLOW_COPY_AND_ASSIGN(WebUILoginDisplay);
84 }; 84 };
85 85
86 } // namespace chromeos 86 } // namespace chromeos
87 87
88 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_LOGIN_DISPLAY_H_ 88 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_LOGIN_DISPLAY_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/wallpaper_manager.cc ('k') | chrome/browser/chromeos/login/webui_login_display.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698