1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23

content / shell / app / ios / shell_application_ios.h [blame]

// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CONTENT_SHELL_APP_IOS_SHELL_APPLICATION_IOS_H_
#define CONTENT_SHELL_APP_IOS_SHELL_APPLICATION_IOS_H_

#ifdef __OBJC__
#import <UIKit/UIKit.h>

NS_ASSUME_NONNULL_BEGIN

// UIApplicationDelegate implementation for web_view_shell.
@interface ShellAppDelegate : UIResponder <UIApplicationDelegate>

@end

NS_ASSUME_NONNULL_END
#endif

int RunShellApplication(int argc, const char* _Nullable* _Nullable argv);

#endif  // CONTENT_SHELL_APP_IOS_SHELL_APPLICATION_IOS_H_