blob: 27a7e3b90405a220ad4020e8fdf1a6801fe3a055 [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef IOS_WEB_WEB_STATE_UI_CRW_WK_UI_HANDLER_H_
#define IOS_WEB_WEB_STATE_UI_CRW_WK_UI_HANDLER_H_
#import <UIKit/UIKit.h>
#import <WebKit/WebKit.h>
#import "ios/web/web_state/ui/crw_web_view_handler.h"
@class CRWLegacyContextMenuController;
@protocol CRWWKUIHandlerDelegate;
// Object handling the WKUIDelegate callbacks for the WKWebView.
@interface CRWWKUIHandler : CRWWebViewHandler <WKUIDelegate>
// Delegate for the handler.
@property(nonatomic, weak) id<CRWWKUIHandlerDelegate> delegate;
// Context menu controller, to be set when the WebView is created.
@property(nonatomic, strong)
CRWLegacyContextMenuController* contextMenuController;
@end
#endif // IOS_WEB_WEB_STATE_UI_CRW_WK_UI_HANDLER_H_