shell_app_delegate.h 609 B

123456789101112131415161718192021
  1. // Copyright 2014 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 IOS_WEB_VIEW_SHELL_SHELL_APP_DELEGATE_H_
  5. #define IOS_WEB_VIEW_SHELL_SHELL_APP_DELEGATE_H_
  6. #import <UIKit/UIKit.h>
  7. NS_ASSUME_NONNULL_BEGIN
  8. // UIApplicationDelegate implementation for web_view_shell.
  9. @interface ShellAppDelegate : UIResponder<UIApplicationDelegate>
  10. // The main window for the application.
  11. @property(nonatomic, strong) UIWindow* window;
  12. @end
  13. NS_ASSUME_NONNULL_END
  14. #endif // IOS_WEB_VIEW_SHELL_SHELL_APP_DELEGATE_H_