first_launch_view_controller.h 643 B

1234567891011121314151617181920212223
  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. #ifndef REMOTING_IOS_APP_FIRST_LAUNCH_VIEW_CONTROLLER_H_
  5. #define REMOTING_IOS_APP_FIRST_LAUNCH_VIEW_CONTROLLER_H_
  6. #import <UIKit/UIKit.h>
  7. @protocol FirstLaunchViewControllerDelegate<NSObject>
  8. - (void)presentSignInFlow;
  9. @end
  10. // This shows a view to ask the user to sign in.
  11. @interface FirstLaunchViewController : UIViewController
  12. @property(nonatomic, weak) id<FirstLaunchViewControllerDelegate> delegate;
  13. @end
  14. #endif // REMOTING_IOS_APP_FIRST_LAUNCH_VIEW_CONTROLLER_H_