| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_LOGIN_DISPLAY_HOST_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 // Takes ownership of |screen_parameters|, which can also be NULL. | 66 // Takes ownership of |screen_parameters|, which can also be NULL. |
| 67 virtual void StartWizard( | 67 virtual void StartWizard( |
| 68 const std::string& first_screen_name, | 68 const std::string& first_screen_name, |
| 69 DictionaryValue* screen_parameters) = 0; | 69 DictionaryValue* screen_parameters) = 0; |
| 70 | 70 |
| 71 // Starts sign in screen. | 71 // Starts sign in screen. |
| 72 virtual void StartSignInScreen() = 0; | 72 virtual void StartSignInScreen() = 0; |
| 73 | 73 |
| 74 // Resumes a previously started sign in screen. | 74 // Resumes a previously started sign in screen. |
| 75 virtual void ResumeSignInScreen() = 0; | 75 virtual void ResumeSignInScreen() = 0; |
| 76 | |
| 77 // Closes the login window. | |
| 78 virtual void CloseWindow() = 0; | |
| 79 }; | 76 }; |
| 80 | 77 |
| 81 } // namespace chromeos | 78 } // namespace chromeos |
| 82 | 79 |
| 83 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_H_ | 80 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_H_ |
| OLD | NEW |