Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Side by Side Diff: ios/web_view/public/cwv_ui_delegate.h

Issue 2770633002: Export all CWV* symbols from the ios/web_view dynamic library. (Closed)
Patch Set: Add cwv_export.h to "sources" attribute of //ios/web_view:web_view. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 <CoreGraphics/CoreGraphics.h> 8 #import <CoreGraphics/CoreGraphics.h>
9 #import <UIKit/UIKit.h> 9 #import <UIKit/UIKit.h>
10 10
11 // TODO(crbug.com/704946): Make framework style include work everywhere and
12 // remove this #if.
13 #if defined(CWV_IMPLEMENTATION)
14 #include "ios/web_view/public/cwv_export.h"
15 #else
16 #include <ChromeWebView/cwv_export.h>
17 #endif
18
11 @class CWVHTMLElement; 19 @class CWVHTMLElement;
12 @class CWVWebView; 20 @class CWVWebView;
13 @class CWVWebViewConfiguration; 21 @class CWVWebViewConfiguration;
14 @class CWVNavigationAction; 22 @class CWVNavigationAction;
15 23
16 // UI delegate interface for a CWVWebView. Embedders can implement the 24 // UI delegate interface for a CWVWebView. Embedders can implement the
17 // functions in order to customize library behavior. 25 // functions in order to customize library behavior.
26 CWV_EXPORT
18 @protocol CWVUIDelegate<NSObject> 27 @protocol CWVUIDelegate<NSObject>
19 28
20 @optional 29 @optional
21 // Instructs the delegate to create a new browsing window (f.e. in response to 30 // Instructs the delegate to create a new browsing window (f.e. in response to
22 // window.open JavaScript call). Page will not open a window if this method 31 // window.open JavaScript call). Page will not open a window if this method
23 // returns nil or is not implemented. This method can not return |webView|. 32 // returns nil or is not implemented. This method can not return |webView|.
24 - (CWVWebView*)webView:(CWVWebView*)webView 33 - (CWVWebView*)webView:(CWVWebView*)webView
25 createWebViewWithConfiguration:(CWVWebViewConfiguration*)configuration 34 createWebViewWithConfiguration:(CWVWebViewConfiguration*)configuration
26 forNavigationAction:(CWVNavigationAction*)action; 35 forNavigationAction:(CWVNavigationAction*)action;
27 36
(...skipping 29 matching lines...) Expand all
57 - (void)webView:(CWVWebView*)webView 66 - (void)webView:(CWVWebView*)webView
58 runJavaScriptTextInputPanelWithPrompt:(NSString*)prompt 67 runJavaScriptTextInputPanelWithPrompt:(NSString*)prompt
59 defaultText:(NSString*)defaultText 68 defaultText:(NSString*)defaultText
60 pageURL:(NSURL*)URL 69 pageURL:(NSURL*)URL
61 completionHandler: 70 completionHandler:
62 (void (^)(NSString*))completionHandler; 71 (void (^)(NSString*))completionHandler;
63 72
64 @end 73 @end
65 74
66 #endif // IOS_WEB_VIEW_PUBLIC_CWV_UI_DELEGATE_H_ 75 #endif // IOS_WEB_VIEW_PUBLIC_CWV_UI_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698