| // Copyright 2017 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef IOS_CHROME_BROWSER_AUTHENTICATION_UI_BUNDLED_SIGNIN_PRESENTER_H_ |
| #define IOS_CHROME_BROWSER_AUTHENTICATION_UI_BUNDLED_SIGNIN_PRESENTER_H_ |
| |
| @class ShowSigninCommand; |
| |
| // Protocol used to display signin UI. |
| @protocol SigninPresenter |
| // Asks the presenter to display the signin UI configured by `command`. |
| - (void)showSignin:(ShowSigninCommand*)command; |
| @end |
| |
| #endif // IOS_CHROME_BROWSER_AUTHENTICATION_UI_BUNDLED_SIGNIN_PRESENTER_H_ |