Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 5 #ifndef IOS_WEB_PUBLIC_WEB_STATE_UI_CRW_CONTEXT_MENU_DELEGATE_H_ | |
| 6 #define IOS_WEB_PUBLIC_WEB_STATE_UI_CRW_CONTEXT_MENU_DELEGATE_H_ | |
| 7 | |
| 8 #import <WebKit/WebKit.h> | |
| 9 | |
| 10 #import "ios/web/public/web_state/context_menu_params.h" | |
| 11 | |
| 12 @protocol CRWContextMenuDelegate | |
| 13 - (BOOL)webView:(WKWebView*)webView | |
|
Eugene But (OOO till 7-30)
2017/01/13 16:19:41
Could you please add comments. Things which worth
Olivier
2017/01/13 18:08:58
Added a timing comment when returning YES.
| |
| 14 handleContextMenu:(const web::ContextMenuParams&)params; | |
| 15 @end | |
| 16 | |
| 17 #endif // IOS_WEB_PUBLIC_WEB_STATE_UI_CRW_CONTEXT_MENU_DELEGATE_H_ | |
| OLD | NEW |