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

Unified Diff: ios/web_view/public/criwv.h

Issue 2675633002: Let CRIWVWebView inherit UIView instead of NSObject. (Closed)
Patch Set: Fix format. Created 3 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: ios/web_view/public/criwv.h
diff --git a/ios/web_view/public/criwv.h b/ios/web_view/public/criwv.h
index a858af24f72cdf585475360a30be072cd3af2c2d..722f4d9a459621b1611c5265ea92620195301ad5 100644
--- a/ios/web_view/public/criwv.h
+++ b/ios/web_view/public/criwv.h
@@ -5,10 +5,11 @@
#ifndef IOS_WEB_VIEW_PUBLIC_CRIWV_H_
#define IOS_WEB_VIEW_PUBLIC_CRIWV_H_
+#import <CoreGraphics/CoreGraphics.h>
#import <Foundation/Foundation.h>
@protocol CRIWVDelegate;
-@protocol CRIWVWebView;
+@class CRIWVWebView;
// Main interface for the CRIWV library.
@interface CRIWV : NSObject
@@ -22,7 +23,7 @@
+ (void)shutDown;
// Creates and returns a web view.
-+ (id<CRIWVWebView>)webView;
++ (CRIWVWebView*)webViewWithFrame:(CGRect)frame;
@end

Powered by Google App Engine
This is Rietveld 408576698