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

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

Issue 2770633002: Export all CWV* symbols from the ios/web_view dynamic library. (Closed)
Patch Set: 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef IOS_WEB_VIEW_PUBLIC_CWV_WEB_VIEW_H_ 4 #ifndef IOS_WEB_VIEW_PUBLIC_CWV_WEB_VIEW_H_
5 #define IOS_WEB_VIEW_PUBLIC_CWV_WEB_VIEW_H_ 5 #define IOS_WEB_VIEW_PUBLIC_CWV_WEB_VIEW_H_
6 6
7 #import <UIKit/UIKit.h> 7 #import <UIKit/UIKit.h>
8 8
9 #include "cwv_export.h"
10
9 @class CWVWebViewConfiguration; 11 @class CWVWebViewConfiguration;
10 @protocol CWVUIDelegate; 12 @protocol CWVUIDelegate;
11 @protocol CWVTranslateDelegate; 13 @protocol CWVTranslateDelegate;
12 @protocol CWVNavigationDelegate; 14 @protocol CWVNavigationDelegate;
13 15
14 // A web view component (like WKWebView) which uses iOS Chromium's web view 16 // A web view component (like WKWebView) which uses iOS Chromium's web view
15 // implementation. 17 // implementation.
16 // 18 //
17 // In addition to WKWebView features, it allows Translate, Find In Page, 19 // In addition to WKWebView features, it allows Translate, Find In Page,
18 // Customizable Context Menus, and maybe more. 20 // Customizable Context Menus, and maybe more.
19 // 21 //
20 // Concrete instances can be created through CWV. 22 // Concrete instances can be created through CWV.
21 @interface CWVWebView : UIView 23 CWV_EXPORT @interface CWVWebView : UIView
22 24
23 // The view used to display web content. 25 // The view used to display web content.
24 @property(nonatomic, readonly) UIView* view; 26 @property(nonatomic, readonly) UIView* view;
25 27
26 // This web view's navigation delegate. 28 // This web view's navigation delegate.
27 @property(nonatomic, weak) id<CWVNavigationDelegate> navigationDelegate; 29 @property(nonatomic, weak) id<CWVNavigationDelegate> navigationDelegate;
28 30
29 // This web view's UI delegate 31 // This web view's UI delegate
30 @property(nonatomic, weak) id<CWVUIDelegate> UIDelegate; 32 @property(nonatomic, weak) id<CWVUIDelegate> UIDelegate;
31 33
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 - (void)loadRequest:(NSURLRequest*)request; 78 - (void)loadRequest:(NSURLRequest*)request;
77 79
78 // Evaluates a JavaScript string. 80 // Evaluates a JavaScript string.
79 // The completion handler is invoked when script evaluation completes. 81 // The completion handler is invoked when script evaluation completes.
80 - (void)evaluateJavaScript:(NSString*)javaScriptString 82 - (void)evaluateJavaScript:(NSString*)javaScriptString
81 completionHandler:(void (^)(id, NSError*))completionHandler; 83 completionHandler:(void (^)(id, NSError*))completionHandler;
82 84
83 @end 85 @end
84 86
85 #endif // IOS_WEB_VIEW_PUBLIC_CWV_WEB_VIEW_H_ 87 #endif // IOS_WEB_VIEW_PUBLIC_CWV_WEB_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698