OLD | NEW |
1 // Copyright 2017 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef IOS_WEB_VIEW_PUBLIC_CWV_UI_DELEGATE_H_ | 5 #ifndef IOS_WEB_VIEW_PUBLIC_CWV_UI_DELEGATE_H_ |
6 #define IOS_WEB_VIEW_PUBLIC_CWV_UI_DELEGATE_H_ | 6 #define IOS_WEB_VIEW_PUBLIC_CWV_UI_DELEGATE_H_ |
7 | 7 |
8 #import <ChromeWebView/cwv_export.h> | |
9 #import <CoreGraphics/CoreGraphics.h> | 8 #import <CoreGraphics/CoreGraphics.h> |
10 #import <UIKit/UIKit.h> | 9 #import <UIKit/UIKit.h> |
11 | 10 |
| 11 #import "cwv_export.h" |
| 12 |
12 @class CWVHTMLElement; | 13 @class CWVHTMLElement; |
13 @class CWVWebView; | 14 @class CWVWebView; |
14 @class CWVWebViewConfiguration; | 15 @class CWVWebViewConfiguration; |
15 @class CWVNavigationAction; | 16 @class CWVNavigationAction; |
16 | 17 |
17 // UI delegate interface for a CWVWebView. Embedders can implement the | 18 // UI delegate interface for a CWVWebView. Embedders can implement the |
18 // functions in order to customize library behavior. | 19 // functions in order to customize library behavior. |
19 CWV_EXPORT | 20 CWV_EXPORT |
20 @protocol CWVUIDelegate<NSObject> | 21 @protocol CWVUIDelegate<NSObject> |
21 | 22 |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 - (void)webView:(CWVWebView*)webView | 60 - (void)webView:(CWVWebView*)webView |
60 runJavaScriptTextInputPanelWithPrompt:(NSString*)prompt | 61 runJavaScriptTextInputPanelWithPrompt:(NSString*)prompt |
61 defaultText:(NSString*)defaultText | 62 defaultText:(NSString*)defaultText |
62 pageURL:(NSURL*)URL | 63 pageURL:(NSURL*)URL |
63 completionHandler: | 64 completionHandler: |
64 (void (^)(NSString*))completionHandler; | 65 (void (^)(NSString*))completionHandler; |
65 | 66 |
66 @end | 67 @end |
67 | 68 |
68 #endif // IOS_WEB_VIEW_PUBLIC_CWV_UI_DELEGATE_H_ | 69 #endif // IOS_WEB_VIEW_PUBLIC_CWV_UI_DELEGATE_H_ |
OLD | NEW |