Title: [212858] trunk/Source/WebKit/ios
Revision
212858
Author
aakash_j...@apple.com
Date
2017-02-22 15:38:30 -0800 (Wed, 22 Feb 2017)

Log Message

Move instance members from WebPDFViewPlaceholder.h to implementation file
https://bugs.webkit.org/show_bug.cgi?id=168705

Reviewed by Tim Horton.

* WebView/WebPDFViewPlaceholder.h: Moving instance members to implementation file.
* WebView/WebPDFViewPlaceholder.mm: Ditto.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ios/ChangeLog (212857 => 212858)


--- trunk/Source/WebKit/ios/ChangeLog	2017-02-22 23:30:15 UTC (rev 212857)
+++ trunk/Source/WebKit/ios/ChangeLog	2017-02-22 23:38:30 UTC (rev 212858)
@@ -1,5 +1,15 @@
 2017-02-22  Aakash Jain  <aakash_j...@apple.com>
 
+        Move instance members from WebPDFViewPlaceholder.h to implementation file
+        https://bugs.webkit.org/show_bug.cgi?id=168705
+
+        Reviewed by Tim Horton.
+
+        * WebView/WebPDFViewPlaceholder.h: Moving instance members to implementation file.
+        * WebView/WebPDFViewPlaceholder.mm: Ditto.
+
+2017-02-22  Aakash Jain  <aakash_j...@apple.com>
+
         Move instance members from WebSelectionRect.h to implementation file
         https://bugs.webkit.org/show_bug.cgi?id=168732
 

Modified: trunk/Source/WebKit/ios/WebView/WebPDFViewPlaceholder.h (212857 => 212858)


--- trunk/Source/WebKit/ios/WebView/WebPDFViewPlaceholder.h	2017-02-22 23:30:15 UTC (rev 212857)
+++ trunk/Source/WebKit/ios/WebView/WebPDFViewPlaceholder.h	2017-02-22 23:38:30 UTC (rev 212858)
@@ -37,20 +37,8 @@
     be drawn to the UI by some other object (ideally the delegate of this class) while still interfacing
     with WAK and WebKit correctly.
 */
-@interface WebPDFViewPlaceholder : WAKView <WebPDFDocumentView, WebPDFDocumentRepresentation> {
-    NSString *_title;
-    NSArray *_pageRects;
-    NSArray *_pageYOrigins;
-    CGPDFDocumentRef _document;
-    WebDataSource *_dataSource; // weak to prevent cycles.
+@interface WebPDFViewPlaceholder : WAKView <WebPDFDocumentView, WebPDFDocumentRepresentation>
 
-    NSObject<WebPDFViewPlaceholderDelegate> *_delegate;
-
-    BOOL _didFinishLoad;
-
-    CGSize _containerSize;
-}
-
 /*!
     @method setAsPDFDocRepAndView
     @abstract This methods sets [WebPDFViewPlaceholder class] as the document and view representations

Modified: trunk/Source/WebKit/ios/WebView/WebPDFViewPlaceholder.mm (212857 => 212858)


--- trunk/Source/WebKit/ios/WebView/WebPDFViewPlaceholder.mm	2017-02-22 23:30:15 UTC (rev 212857)
+++ trunk/Source/WebKit/ios/WebView/WebPDFViewPlaceholder.mm	2017-02-22 23:38:30 UTC (rev 212858)
@@ -102,7 +102,19 @@
 
 #pragma mark WebPDFViewPlaceholder implementation
 
-@implementation WebPDFViewPlaceholder
+@implementation WebPDFViewPlaceholder {
+    NSString *_title;
+    NSArray *_pageRects;
+    NSArray *_pageYOrigins;
+    CGPDFDocumentRef _document;
+    WebDataSource *_dataSource; // weak to prevent cycles.
+    
+    NSObject<WebPDFViewPlaceholderDelegate> *_delegate;
+    
+    BOOL _didFinishLoad;
+    
+    CGSize _containerSize;
+}
 
 @synthesize delegate = _delegate;
 @synthesize pageRects = _pageRects;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to