| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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_USER_SELECTION_SCREEN_PROXY_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_USER_SELECTION_SCREEN_PROXY_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_USER_SELECTION_SCREEN_PROXY_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_USER_SELECTION_SCREEN_PROXY_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
| 10 #include "chrome/browser/chromeos/login/ui/views/user_board_view.h" | 10 #include "chrome/browser/chromeos/login/ui/views/user_board_view.h" |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 void SetPublicSessionLocales(const AccountId& account_id, | 24 void SetPublicSessionLocales(const AccountId& account_id, |
| 25 std::unique_ptr<base::ListValue> locales, | 25 std::unique_ptr<base::ListValue> locales, |
| 26 const std::string& default_locale, | 26 const std::string& default_locale, |
| 27 bool multiple_recommended_locales) override{}; | 27 bool multiple_recommended_locales) override{}; |
| 28 void ShowBannerMessage(const base::string16& message) override{}; | 28 void ShowBannerMessage(const base::string16& message) override{}; |
| 29 void ShowUserPodCustomIcon( | 29 void ShowUserPodCustomIcon( |
| 30 const AccountId& account_id, | 30 const AccountId& account_id, |
| 31 const proximity_auth::ScreenlockBridge::UserPodCustomIconOptions& icon) | 31 const proximity_auth::ScreenlockBridge::UserPodCustomIconOptions& icon) |
| 32 override; | 32 override; |
| 33 void HideUserPodCustomIcon(const AccountId& account_id) override; | 33 void HideUserPodCustomIcon(const AccountId& account_id) override; |
| 34 void SetAuthType( | 34 void SetAuthType(const AccountId& account_id, |
| 35 const AccountId& account_id, | 35 proximity_auth::mojom::AuthType auth_type, |
| 36 proximity_auth::ScreenlockBridge::LockHandler::AuthType auth_type, | 36 const base::string16& initial_value) override; |
| 37 const base::string16& initial_value) override; | |
| 38 void Bind(chromeos::UserSelectionScreen* screen) override{}; | 37 void Bind(chromeos::UserSelectionScreen* screen) override{}; |
| 39 void Unbind() override{}; | 38 void Unbind() override{}; |
| 40 base::WeakPtr<UserBoardView> GetWeakPtr() override; | 39 base::WeakPtr<UserBoardView> GetWeakPtr() override; |
| 41 | 40 |
| 42 private: | 41 private: |
| 43 DISALLOW_COPY_AND_ASSIGN(UserSelectionScreenProxy); | 42 DISALLOW_COPY_AND_ASSIGN(UserSelectionScreenProxy); |
| 44 }; | 43 }; |
| 45 | 44 |
| 46 } // namespace chromeos | 45 } // namespace chromeos |
| 47 | 46 |
| 48 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_USER_SELECTION_SCREEN_PROXY_H_ | 47 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_USER_SELECTION_SCREEN_PROXY_H_ |
| OLD | NEW |