| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_UI_WEBUI_CHROMEOS_LOGIN_USER_BOARD_SCREEN_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_USER_BOARD_SCREEN_HANDLER_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_USER_BOARD_SCREEN_HANDLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_USER_BOARD_SCREEN_HANDLER_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/values.h" | 10 #include "base/values.h" |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 void SetPublicSessionDisplayName(const std::string& user_id, | 40 void SetPublicSessionDisplayName(const std::string& user_id, |
| 41 const std::string& display_name) override; | 41 const std::string& display_name) override; |
| 42 void SetPublicSessionLocales(const std::string& user_id, | 42 void SetPublicSessionLocales(const std::string& user_id, |
| 43 scoped_ptr<base::ListValue> locales, | 43 scoped_ptr<base::ListValue> locales, |
| 44 const std::string& default_locale, | 44 const std::string& default_locale, |
| 45 bool multiple_recommended_locales) override; | 45 bool multiple_recommended_locales) override; |
| 46 void ShowBannerMessage(const base::string16& message) override; | 46 void ShowBannerMessage(const base::string16& message) override; |
| 47 void ShowUserPodCustomIcon(const std::string& user_id, | 47 void ShowUserPodCustomIcon(const std::string& user_id, |
| 48 const base::DictionaryValue& icon) override; | 48 const base::DictionaryValue& icon) override; |
| 49 void HideUserPodCustomIcon(const std::string& user_id) override; | 49 void HideUserPodCustomIcon(const std::string& user_id) override; |
| 50 void SetAuthType(const std::string& user_id, | 50 void SetAuthType( |
| 51 ScreenlockBridge::LockHandler::AuthType auth_type, | 51 const std::string& user_id, |
| 52 const base::string16& initial_value) override; | 52 proximity_auth::ScreenlockBridge::LockHandler::AuthType auth_type, |
| 53 const base::string16& initial_value) override; |
| 53 | 54 |
| 54 void Bind(UserBoardModel& model) override; | 55 void Bind(UserBoardModel& model) override; |
| 55 void Unbind() override; | 56 void Unbind() override; |
| 56 | 57 |
| 57 UserBoardModel* model_; | 58 UserBoardModel* model_; |
| 58 | 59 |
| 59 DISALLOW_COPY_AND_ASSIGN(UserBoardScreenHandler); | 60 DISALLOW_COPY_AND_ASSIGN(UserBoardScreenHandler); |
| 60 }; | 61 }; |
| 61 | 62 |
| 62 } // namespace chromeos | 63 } // namespace chromeos |
| 63 | 64 |
| 64 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_USER_BOARD_SCREEN_HANDLER_H_ | 65 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_USER_BOARD_SCREEN_HANDLER_H_ |
| OLD | NEW |