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

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

Issue 2685793004: Chromad: Wire up displayName and givenName (Closed)
Patch Set: Combine SetDisplayName and SetGivenName into SetDisplayAndGiveName Created 3 years, 10 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
OLDNEW
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_CHROMEOS_LOGIN_LOCK_WEBUI_SCREEN_LOCKER_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_LOCK_WEBUI_SCREEN_LOCKER_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_LOCK_WEBUI_SCREEN_LOCKER_H_ 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_LOCK_WEBUI_SCREEN_LOCKER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <memory> 10 #include <memory>
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 void OnSigninScreenReady() override; 111 void OnSigninScreenReady() override;
112 void OnGaiaScreenReady() override; 112 void OnGaiaScreenReady() override;
113 void OnStartEnterpriseEnrollment() override; 113 void OnStartEnterpriseEnrollment() override;
114 void OnStartEnableDebuggingScreen() override; 114 void OnStartEnableDebuggingScreen() override;
115 void OnStartKioskEnableScreen() override; 115 void OnStartKioskEnableScreen() override;
116 void OnStartKioskAutolaunchScreen() override; 116 void OnStartKioskAutolaunchScreen() override;
117 void ShowWrongHWIDScreen() override; 117 void ShowWrongHWIDScreen() override;
118 void ResetAutoLoginTimer() override; 118 void ResetAutoLoginTimer() override;
119 void ResyncUserData() override; 119 void ResyncUserData() override;
120 void SetDisplayEmail(const std::string& email) override; 120 void SetDisplayEmail(const std::string& email) override;
121 void SetDisplayAndGivenName(const std::string& display_name,
122 const std::string& given_name) override;
121 void Signout() override; 123 void Signout() override;
122 bool IsUserWhitelisted(const AccountId& account_id) override; 124 bool IsUserWhitelisted(const AccountId& account_id) override;
123 125
124 // LockStateObserver: 126 // LockStateObserver:
125 void OnLockStateEvent(ash::LockStateObserver::EventType event) override; 127 void OnLockStateEvent(ash::LockStateObserver::EventType event) override;
126 128
127 // WidgetObserver: 129 // WidgetObserver:
128 void OnWidgetDestroying(views::Widget* widget) override; 130 void OnWidgetDestroying(views::Widget* widget) override;
129 131
130 // PowerManagerClient::Observer: 132 // PowerManagerClient::Observer:
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 bool is_observing_keyboard_ = false; 195 bool is_observing_keyboard_ = false;
194 196
195 base::WeakPtrFactory<WebUIScreenLocker> weak_factory_; 197 base::WeakPtrFactory<WebUIScreenLocker> weak_factory_;
196 198
197 DISALLOW_COPY_AND_ASSIGN(WebUIScreenLocker); 199 DISALLOW_COPY_AND_ASSIGN(WebUIScreenLocker);
198 }; 200 };
199 201
200 } // namespace chromeos 202 } // namespace chromeos
201 203
202 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOCK_WEBUI_SCREEN_LOCKER_H_ 204 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOCK_WEBUI_SCREEN_LOCKER_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/existing_user_controller.cc ('k') | chrome/browser/chromeos/login/lock/webui_screen_locker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698