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

Log Message

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

Reviewed by Tim Horton.

* WebCoreSupport/WebSelectionRect.h: Moving instance members to implementation file.
* WebCoreSupport/WebSelectionRect.m: Ditto.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ios/ChangeLog (212855 => 212856)


--- trunk/Source/WebKit/ios/ChangeLog	2017-02-22 23:09:26 UTC (rev 212855)
+++ trunk/Source/WebKit/ios/ChangeLog	2017-02-22 23:12:59 UTC (rev 212856)
@@ -1,5 +1,15 @@
 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
+
+        Reviewed by Tim Horton.
+
+        * WebCoreSupport/WebSelectionRect.h: Moving instance members to implementation file.
+        * WebCoreSupport/WebSelectionRect.m: Ditto.
+
+2017-02-22  Aakash Jain  <aakash_j...@apple.com>
+
         Move iOS specific symbols to WebKit.ios.exp
         https://bugs.webkit.org/show_bug.cgi?id=168726
 

Modified: trunk/Source/WebKit/ios/WebCoreSupport/WebSelectionRect.h (212855 => 212856)


--- trunk/Source/WebKit/ios/WebCoreSupport/WebSelectionRect.h	2017-02-22 23:09:26 UTC (rev 212855)
+++ trunk/Source/WebKit/ios/WebCoreSupport/WebSelectionRect.h	2017-02-22 23:12:59 UTC (rev 212856)
@@ -29,17 +29,7 @@
 #import <Foundation/Foundation.h>
 #import <WebKitLegacy/WebFrameIOS.h>
 
-@interface WebSelectionRect : NSObject <NSCopying> {
-    CGRect m_rect;
-    WKWritingDirection m_writingDirection;
-    BOOL m_isLineBreak;
-    BOOL m_isFirstOnLine;
-    BOOL m_isLastOnLine;
-    BOOL m_containsStart;
-    BOOL m_containsEnd;
-    BOOL m_isInFixedPosition;
-    BOOL m_isHorizontal;
-}
+@interface WebSelectionRect : NSObject <NSCopying>
 
 @property (nonatomic, assign) CGRect rect;
 @property (nonatomic, assign) WKWritingDirection writingDirection;

Modified: trunk/Source/WebKit/ios/WebCoreSupport/WebSelectionRect.m (212855 => 212856)


--- trunk/Source/WebKit/ios/WebCoreSupport/WebSelectionRect.m	2017-02-22 23:09:26 UTC (rev 212855)
+++ trunk/Source/WebKit/ios/WebCoreSupport/WebSelectionRect.m	2017-02-22 23:12:59 UTC (rev 212856)
@@ -27,7 +27,17 @@
 
 #import "WebSelectionRect.h"
 
-@implementation WebSelectionRect
+@implementation WebSelectionRect {
+    CGRect m_rect;
+    WKWritingDirection m_writingDirection;
+    BOOL m_isLineBreak;
+    BOOL m_isFirstOnLine;
+    BOOL m_isLastOnLine;
+    BOOL m_containsStart;
+    BOOL m_containsEnd;
+    BOOL m_isInFixedPosition;
+    BOOL m_isHorizontal;
+}
 
 @synthesize rect = m_rect;
 @synthesize writingDirection = m_writingDirection;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to