Title: [212880] trunk/Source/WebKit/ios
Revision
212880
Author
aakash_j...@apple.com
Date
2017-02-22 23:24:22 -0800 (Wed, 22 Feb 2017)

Log Message

Move instance members from WebPDFView to implementation file
https://bugs.webkit.org/show_bug.cgi?id=168765

Reviewed by Tim Horton.

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

Modified Paths

Diff

Modified: trunk/Source/WebKit/ios/ChangeLog (212879 => 212880)


--- trunk/Source/WebKit/ios/ChangeLog	2017-02-23 07:19:19 UTC (rev 212879)
+++ trunk/Source/WebKit/ios/ChangeLog	2017-02-23 07:24:22 UTC (rev 212880)
@@ -1,5 +1,15 @@
 2017-02-22  Aakash Jain  <aakash_j...@apple.com>
 
+        Move instance members from WebPDFView to implementation file
+        https://bugs.webkit.org/show_bug.cgi?id=168765
+
+        Reviewed by Tim Horton.
+
+        * WebView/WebPDFViewIOS.h: Moving instance members to implementation file.
+        * WebView/WebPDFViewIOS.mm: Ditto.
+
+2017-02-22  Aakash Jain  <aakash_j...@apple.com>
+
         Export m_isLoggingEnabled symbol from MemoryMeasure.h
         https://bugs.webkit.org/show_bug.cgi?id=168760
 

Modified: trunk/Source/WebKit/ios/WebView/WebPDFViewIOS.h (212879 => 212880)


--- trunk/Source/WebKit/ios/WebView/WebPDFViewIOS.h	2017-02-23 07:19:19 UTC (rev 212879)
+++ trunk/Source/WebKit/ios/WebView/WebPDFViewIOS.h	2017-02-23 07:24:22 UTC (rev 212880)
@@ -25,12 +25,7 @@
 
 #import <WebKitLegacy/WebDocumentPrivate.h>
 
-@interface WebPDFView : WAKView <WebPDFDocumentView, WebPDFDocumentRepresentation> {
-    BOOL dataSourceHasBeenSet;
-    CGPDFDocumentRef _PDFDocument;
-    NSString *_title;
-    CGRect *_pageRects;
-}
+@interface WebPDFView : WAKView <WebPDFDocumentView, WebPDFDocumentRepresentation>
 
 - (unsigned)pageNumberForRect:(CGRect)rect;
 - (unsigned)totalPages;

Modified: trunk/Source/WebKit/ios/WebView/WebPDFViewIOS.mm (212879 => 212880)


--- trunk/Source/WebKit/ios/WebView/WebPDFViewIOS.mm	2017-02-23 07:19:19 UTC (rev 212879)
+++ trunk/Source/WebKit/ios/WebView/WebPDFViewIOS.mm	2017-02-23 07:24:22 UTC (rev 212880)
@@ -67,7 +67,12 @@
     return CGColorCreate(graySpace, components);
 }
 
-@implementation WebPDFView
+@implementation WebPDFView {
+    BOOL dataSourceHasBeenSet;
+    CGPDFDocumentRef _PDFDocument;
+    NSString *_title;
+    CGRect *_pageRects;
+}
 
 + (NSArray *)supportedMIMETypes
 {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to