| 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_CHROMEOS_LOGIN_UI_VIEWS_USER_BOARD_VIEW_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_UI_VIEWS_USER_BOARD_VIEW_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_UI_VIEWS_USER_BOARD_VIEW_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_UI_VIEWS_USER_BOARD_VIEW_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 | 36 |
| 37 virtual base::WeakPtr<UserBoardView> GetWeakPtr() = 0; | 37 virtual base::WeakPtr<UserBoardView> GetWeakPtr() = 0; |
| 38 | 38 |
| 39 virtual void SetPublicSessionDisplayName(const AccountId& account_id, | 39 virtual void SetPublicSessionDisplayName(const AccountId& account_id, |
| 40 const std::string& display_name) = 0; | 40 const std::string& display_name) = 0; |
| 41 virtual void SetPublicSessionLocales(const AccountId& account_id, | 41 virtual void SetPublicSessionLocales(const AccountId& account_id, |
| 42 std::unique_ptr<base::ListValue> locales, | 42 std::unique_ptr<base::ListValue> locales, |
| 43 const std::string& default_locale, | 43 const std::string& default_locale, |
| 44 bool multiple_recommended_locales) = 0; | 44 bool multiple_recommended_locales) = 0; |
| 45 virtual void ShowBannerMessage(const base::string16& message) = 0; | 45 virtual void ShowBannerMessage(const base::string16& message) = 0; |
| 46 virtual void ShowUserPodCustomIcon(const AccountId& account_id, | 46 virtual void ShowUserPodCustomIcon( |
| 47 const base::DictionaryValue& icon) = 0; | 47 const AccountId& account_id, |
| 48 const proximity_auth::ScreenlockBridge::UserPodCustomIconOptions& |
| 49 icon) = 0; |
| 48 virtual void HideUserPodCustomIcon(const AccountId& account_id) = 0; | 50 virtual void HideUserPodCustomIcon(const AccountId& account_id) = 0; |
| 49 virtual void SetAuthType( | 51 virtual void SetAuthType( |
| 50 const AccountId& account_id, | 52 const AccountId& account_id, |
| 51 proximity_auth::ScreenlockBridge::LockHandler::AuthType auth_type, | 53 proximity_auth::ScreenlockBridge::LockHandler::AuthType auth_type, |
| 52 const base::string16& initial_value) = 0; | 54 const base::string16& initial_value) = 0; |
| 53 }; | 55 }; |
| 54 | 56 |
| 55 } // namespace chromeos | 57 } // namespace chromeos |
| 56 | 58 |
| 57 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_VIEWS_USER_BOARD_VIEW_H_ | 59 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_VIEWS_USER_BOARD_VIEW_H_ |
| OLD | NEW |