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

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

Issue 8773046: [cros] Display emails of users are stored in a separate dictionary in Local State. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge Created 9 years 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_SCREEN_LOCKER_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_SCREEN_LOCKER_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_SCREEN_LOCKER_H_ 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_SCREEN_LOCKER_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 virtual void ShowErrorMessage(const string16& message, 42 virtual void ShowErrorMessage(const string16& message,
43 bool sign_out_only) OVERRIDE; 43 bool sign_out_only) OVERRIDE;
44 virtual void ShowCaptchaAndErrorMessage(const GURL& captcha_url, 44 virtual void ShowCaptchaAndErrorMessage(const GURL& captcha_url,
45 const string16& message) OVERRIDE; 45 const string16& message) OVERRIDE;
46 virtual void ClearErrors() OVERRIDE; 46 virtual void ClearErrors() OVERRIDE;
47 47
48 // LoginDisplay::Delegate: implementation 48 // LoginDisplay::Delegate: implementation
49 virtual void CreateAccount() OVERRIDE; 49 virtual void CreateAccount() OVERRIDE;
50 virtual string16 GetConnectedNetworkName() OVERRIDE; 50 virtual string16 GetConnectedNetworkName() OVERRIDE;
51 virtual void FixCaptivePortal() OVERRIDE; 51 virtual void FixCaptivePortal() OVERRIDE;
52 virtual void SetDisplayEmail(const std::string& email) OVERRIDE;
52 virtual void CompleteLogin(const std::string& username, 53 virtual void CompleteLogin(const std::string& username,
53 const std::string& password) OVERRIDE; 54 const std::string& password) OVERRIDE;
54 virtual void Login(const std::string& username, 55 virtual void Login(const std::string& username,
55 const std::string& password) OVERRIDE; 56 const std::string& password) OVERRIDE;
56 virtual void LoginAsGuest() OVERRIDE; 57 virtual void LoginAsGuest() OVERRIDE;
57 virtual void OnUserSelected(const std::string& username) OVERRIDE; 58 virtual void OnUserSelected(const std::string& username) OVERRIDE;
58 virtual void OnStartEnterpriseEnrollment() OVERRIDE; 59 virtual void OnStartEnterpriseEnrollment() OVERRIDE;
59 60
60 // content::NotificationObserver implementation. 61 // content::NotificationObserver implementation.
61 virtual void Observe(int type, 62 virtual void Observe(int type,
(...skipping 23 matching lines...) Expand all
85 86
86 // Tracks when the WebUI finishes loading. 87 // Tracks when the WebUI finishes loading.
87 bool webui_ready_; 88 bool webui_ready_;
88 89
89 DISALLOW_COPY_AND_ASSIGN(WebUIScreenLocker); 90 DISALLOW_COPY_AND_ASSIGN(WebUIScreenLocker);
90 }; 91 };
91 92
92 } // namespace chromeos 93 } // namespace chromeos
93 94
94 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_SCREEN_LOCKER_H_ 95 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_SCREEN_LOCKER_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/webui_login_display.cc ('k') | chrome/browser/chromeos/login/webui_screen_locker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698