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 30 matching lines...) Expand all Loading... |
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( | 46 virtual void ShowUserPodCustomIcon( |
47 const AccountId& account_id, | 47 const AccountId& account_id, |
48 const proximity_auth::ScreenlockBridge::UserPodCustomIconOptions& | 48 const proximity_auth::ScreenlockBridge::UserPodCustomIconOptions& |
49 icon) = 0; | 49 icon) = 0; |
50 virtual void HideUserPodCustomIcon(const AccountId& account_id) = 0; | 50 virtual void HideUserPodCustomIcon(const AccountId& account_id) = 0; |
51 virtual void SetAuthType( | 51 virtual void SetAuthType(const AccountId& account_id, |
52 const AccountId& account_id, | 52 proximity_auth::mojom::AuthType auth_type, |
53 proximity_auth::ScreenlockBridge::LockHandler::AuthType auth_type, | 53 const base::string16& initial_value) = 0; |
54 const base::string16& initial_value) = 0; | |
55 }; | 54 }; |
56 | 55 |
57 } // namespace chromeos | 56 } // namespace chromeos |
58 | 57 |
59 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_VIEWS_USER_BOARD_VIEW_H_ | 58 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_VIEWS_USER_BOARD_VIEW_H_ |
OLD | NEW |