1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef IOS_PUBLIC_PROVIDER_CHROME_BROWSER_SIGNIN_SIGNIN_PRESENTER_H_
6 #define IOS_PUBLIC_PROVIDER_CHROME_BROWSER_SIGNIN_SIGNIN_PRESENTER_H_
7 
8 @class ShowSigninCommand;
9 
10 // Protocol used to display signin UI.
11 @protocol SigninPresenter
12 // Asks the presenter to display the signin UI configured by |command|.
13 - (void)showSignin:(ShowSigninCommand*)command;
14 @end
15 
16 #endif  // IOS_PUBLIC_PROVIDER_CHROME_BROWSER_SIGNIN_SIGNIN_PRESENTER_H_
17