blob: 8795b00e900122b8962f0d161904f45061385632 [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import <Flutter/Flutter.h>
#import <WebKit/WebKit.h>
#import "FWFGeneratedWebKitApis.h"
#import "FWFInstanceManager.h"
NS_ASSUME_NONNULL_BEGIN
/**
* Implementation of WKUIDelegate for FWFUIDelegateHostApiImpl.
*/
@interface FWFUIDelegate : NSObject <WKUIDelegate>
@end
/**
* Host api implementation for WKUIDelegate.
*
* Handles creating WKUIDelegate that intercommunicate with a paired Dart object.
*/
@interface FWFUIDelegateHostApiImpl : NSObject <FWFWKUIDelegateHostApi>
- (instancetype)initWithInstanceManager:(FWFInstanceManager *)instanceManager;
@end
NS_ASSUME_NONNULL_END