Title: [167826] trunk/Source/WebKit2
Revision
167826
Author
enr...@apple.com
Date
2014-04-25 14:47:00 -0700 (Fri, 25 Apr 2014)

Log Message

Remove duplicate member variable in WKAutocorrectionRects and WKAutocorrectionContext.
https://bugs.webkit.org/show_bug.cgi?id=132206

Reviewed by Benjamin Poulain.

* UIProcess/ios/WKContentViewInteraction.mm:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (167825 => 167826)


--- trunk/Source/WebKit2/ChangeLog	2014-04-25 21:42:48 UTC (rev 167825)
+++ trunk/Source/WebKit2/ChangeLog	2014-04-25 21:47:00 UTC (rev 167826)
@@ -1,3 +1,12 @@
+2014-04-25  Enrica Casucci  <enr...@apple.com>
+
+        Remove duplicate member variable in WKAutocorrectionRects and WKAutocorrectionContext.
+        https://bugs.webkit.org/show_bug.cgi?id=132206
+
+        Reviewed by Benjamin Poulain.
+
+        * UIProcess/ios/WKContentViewInteraction.mm:
+
 2014-04-25  Dean Jackson  <d...@apple.com>
 
         Allow a platform-specific size enumeration to be passed into popup-menu display

Modified: trunk/Source/WebKit2/UIProcess/ios/WKContentViewInteraction.mm (167825 => 167826)


--- trunk/Source/WebKit2/UIProcess/ios/WKContentViewInteraction.mm	2014-04-25 21:42:48 UTC (rev 167825)
+++ trunk/Source/WebKit2/UIProcess/ios/WKContentViewInteraction.mm	2014-04-25 21:47:00 UTC (rev 167826)
@@ -108,22 +108,11 @@
 
 @end
 
-@interface WKAutocorrectionRects : UIWKAutocorrectionRects {
-    CGRect _firstRect;
-    CGRect _lastRect;
-}
+@interface WKAutocorrectionRects : UIWKAutocorrectionRects
 + (WKAutocorrectionRects *)autocorrectionRectsWithRects:(CGRect)firstRect lastRect:(CGRect)lastRect;
-
 @end
 
-@interface WKAutocorrectionContext : UIWKAutocorrectionContext {
-    NSString *_contextBeforeSelection;
-    NSString *_selectedText;
-    NSString *_markedText;
-    NSString *_contextAfterSelection;
-    NSRange _rangeInMarkedText;
-}
-
+@interface WKAutocorrectionContext : UIWKAutocorrectionContext
 + (WKAutocorrectionContext *)autocorrectionContextWithData:(NSString *)beforeText markedText:(NSString *)markedText selectedText:(NSString *)selectedText afterText:(NSString *)afterText selectedRangeInMarkedText:(NSRange)range;
 @end
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to