Title: [164777] trunk/Source/WebKit2
Revision
164777
Author
m...@apple.com
Date
2014-02-26 22:55:49 -0800 (Wed, 26 Feb 2014)

Log Message

iOS build fix.

* UIProcess/ios/forms/WKFormPopover.h:
* UIProcess/ios/forms/WKFormPopover.mm:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (164776 => 164777)


--- trunk/Source/WebKit2/ChangeLog	2014-02-27 06:48:09 UTC (rev 164776)
+++ trunk/Source/WebKit2/ChangeLog	2014-02-27 06:55:49 UTC (rev 164777)
@@ -1,5 +1,12 @@
 2014-02-26  Dan Bernstein  <m...@apple.com>
 
+        iOS build fix.
+
+        * UIProcess/ios/forms/WKFormPopover.h:
+        * UIProcess/ios/forms/WKFormPopover.mm:
+
+2014-02-26  Dan Bernstein  <m...@apple.com>
+
         Replaced use of the EXCLUDED_SOURCE_FILE_NAMES build setting with #if PLATFORM(…) guards in
         the files themselves.
 

Modified: trunk/Source/WebKit2/UIProcess/ios/forms/WKFormPopover.h (164776 => 164777)


--- trunk/Source/WebKit2/UIProcess/ios/forms/WKFormPopover.h	2014-02-27 06:48:09 UTC (rev 164776)
+++ trunk/Source/WebKit2/UIProcess/ios/forms/WKFormPopover.h	2014-02-27 06:55:49 UTC (rev 164777)
@@ -30,12 +30,7 @@
 @class WKContentView;
 @protocol WKRotatingPopoverDelegate;
 
-@interface WKRotatingPopover : NSObject <UIPopoverControllerDelegate> {
-    BOOL _isRotating;
-    CGPoint _presentationPoint;
-    RetainPtr<UIPopoverController> _popoverController;
-    id <WKRotatingPopoverDelegate> _dismissionDelegate;
-}
+@interface WKRotatingPopover : NSObject
 
 - (id)initWithView:(WKContentView *)view;
 - (void)presentPopoverAnimated:(BOOL)animated;

Modified: trunk/Source/WebKit2/UIProcess/ios/forms/WKFormPopover.mm (164776 => 164777)


--- trunk/Source/WebKit2/UIProcess/ios/forms/WKFormPopover.mm	2014-02-27 06:48:09 UTC (rev 164776)
+++ trunk/Source/WebKit2/UIProcess/ios/forms/WKFormPopover.mm	2014-02-27 06:55:49 UTC (rev 164777)
@@ -67,10 +67,19 @@
 {
     [self accessoryDone];
 }
+
 @end
 
+@interface WKRotatingPopover () <UIPopoverControllerDelegate>
+@end
+
 @implementation WKRotatingPopover {
     WKContentView *_view;
+
+    BOOL _isRotating;
+    CGPoint _presentationPoint;
+    RetainPtr<UIPopoverController> _popoverController;
+    id <WKRotatingPopoverDelegate> _dismissionDelegate;
 }
 
 - (id)initWithView:(WKContentView *)view
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to