Title: [173581] trunk/Source

Diff

Modified: trunk/Source/WebCore/ChangeLog (173580 => 173581)


--- trunk/Source/WebCore/ChangeLog	2014-09-12 22:00:13 UTC (rev 173580)
+++ trunk/Source/WebCore/ChangeLog	2014-09-12 22:20:29 UTC (rev 173581)
@@ -1,3 +1,16 @@
+2014-09-12  Commit Queue  <commit-qu...@webkit.org>
+
+        Unreviewed, rolling out r173575.
+        https://bugs.webkit.org/show_bug.cgi?id=136790
+
+        Failing tests (Requested by enrica on #webkit).
+
+        Reverted changeset:
+
+        "Remove PLATFORM(IOS) from WebCore/editing (Part 3)."
+        https://bugs.webkit.org/show_bug.cgi?id=136474
+        http://trac.webkit.org/changeset/173575
+
 2014-09-12  Enrica Casucci  <enr...@apple.com>
 
         Remove PLATFORM(IOS) from WebCore/editing (Part 3).

Modified: trunk/Source/WebCore/WebCore.exp.in (173580 => 173581)


--- trunk/Source/WebCore/WebCore.exp.in	2014-09-12 22:00:13 UTC (rev 173580)
+++ trunk/Source/WebCore/WebCore.exp.in	2014-09-12 22:20:29 UTC (rev 173581)
@@ -2714,7 +2714,6 @@
 __ZN7WebCore6WidgetC2EP7WAKView
 __ZN7WebCore8Document19dispatchWindowEventEN3WTF10PassRefPtrINS_5EventEEENS2_INS_11EventTargetEEE
 __ZN7WebCore8IntPointC1ERK7CGPoint
-__ZN7WebCore8IntPointC1ERKNS_10FloatPointE
 __ZN7WebCore8PositionC1EN3WTF10PassRefPtrINS_4NodeEEENS0_10AnchorTypeE
 __ZN7WebCore8PositionC1EN3WTF10PassRefPtrINS_4NodeEEENS0_19LegacyEditingOffsetE
 __ZN7WebCore8SVGNames4initEv

Modified: trunk/Source/WebCore/editing/TextAffinity.h (173580 => 173581)


--- trunk/Source/WebCore/editing/TextAffinity.h	2014-09-12 22:00:13 UTC (rev 173580)
+++ trunk/Source/WebCore/editing/TextAffinity.h	2014-09-12 22:20:29 UTC (rev 173581)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004-2014 Apple Inc.  All rights reserved.
+ * Copyright (C) 2004 Apple Inc.  All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
@@ -26,10 +26,36 @@
 #ifndef TextAffinity_h
 #define TextAffinity_h
 
+#ifdef __OBJC__
+#if !PLATFORM(IOS)
+#include <AppKit/NSTextView.h>
+#else
+#include "WAKAppKitStubs.h"
+#endif // !PLATFORM(IOS)
+#endif
+
 namespace WebCore {
 
+// These match the AppKit values for these concepts.
+// From NSTextView.h:
+// NSSelectionAffinityUpstream = 0
+// NSSelectionAffinityDownstream = 1
 enum EAffinity { UPSTREAM = 0, DOWNSTREAM = 1 };
 
 } // namespace WebCore
 
+#ifdef __OBJC__
+
+inline NSSelectionAffinity kit(WebCore::EAffinity affinity)
+{
+    return static_cast<NSSelectionAffinity>(affinity);
+}
+
+inline WebCore::EAffinity core(NSSelectionAffinity affinity)
+{
+    return static_cast<WebCore::EAffinity>(affinity);
+}
+
+#endif
+
 #endif // TextAffinity_h

Modified: trunk/Source/WebCore/editing/cocoa/HTMLConverter.mm (173580 => 173581)


--- trunk/Source/WebCore/editing/cocoa/HTMLConverter.mm	2014-09-12 22:00:13 UTC (rev 173580)
+++ trunk/Source/WebCore/editing/cocoa/HTMLConverter.mm	2014-09-12 22:20:29 UTC (rev 173581)
@@ -62,8 +62,6 @@
 
 #if PLATFORM(IOS)
 
-#import "WAKAppKitStubs.h"
-
 SOFT_LINK_FRAMEWORK(UIKit)
 SOFT_LINK_CLASS(UIKit, UIColor)
 

Modified: trunk/Source/WebCore/page/mac/WebCoreFrameView.h (173580 => 173581)


--- trunk/Source/WebCore/page/mac/WebCoreFrameView.h	2014-09-12 22:00:13 UTC (rev 173580)
+++ trunk/Source/WebCore/page/mac/WebCoreFrameView.h	2014-09-12 22:20:29 UTC (rev 173581)
@@ -29,7 +29,6 @@
 #ifdef __cplusplus
 namespace WebCore {
     class Frame;
-    class FloatPoint;
 }
 #endif
 
@@ -38,13 +37,13 @@
 #ifdef __cplusplus
 - (void)setScrollingModes:(WebCore::ScrollbarMode)hMode vertical:(WebCore::ScrollbarMode)vMode andLock:(BOOL)lock;
 - (void)scrollingModes:(WebCore::ScrollbarMode*)hMode vertical:(WebCore::ScrollbarMode*)vMode;
-- (void)setScrollOrigin:(WebCore::FloatPoint)origin updatePositionAtAll:(BOOL)updatePositionAtAll immediately:(BOOL)updatePositionImmediately;
-- (WebCore::FloatPoint)scrollOrigin;
 #else
 - (void)setScrollingModes:(int)hMode vertical:(int)vMode andLock:(BOOL)lock;
 - (void)scrollingModes:(int*)hMode vertical:(int*)vMode;
 #endif
 - (void)setScrollBarsSuppressed:(BOOL)suppressed repaintOnUnsuppress:(BOOL)repaint;
+- (void)setScrollOrigin:(NSPoint)origin updatePositionAtAll:(BOOL)updatePositionAtAll immediately:(BOOL)updatePositionImmediately;
+- (NSPoint)scrollOrigin;
 @end
 
 @protocol WebCoreFrameView

Modified: trunk/Source/WebCore/platform/ios/ScrollViewIOS.mm (173580 => 173581)


--- trunk/Source/WebCore/platform/ios/ScrollViewIOS.mm	2014-09-12 22:00:13 UTC (rev 173580)
+++ trunk/Source/WebCore/platform/ios/ScrollViewIOS.mm	2014-09-12 22:20:29 UTC (rev 173581)
@@ -243,7 +243,9 @@
 void ScrollView::platformSetScrollPosition(const IntPoint& scrollPoint)
 {
     BEGIN_BLOCK_OBJC_EXCEPTIONS;
-    [documentView() scrollPoint:NSMakePoint(fmax(-[scrollView() scrollOrigin].x(), scrollPoint.x()), fmax(-[scrollView() scrollOrigin].y(), scrollPoint.y()))];
+    NSPoint floatPoint = scrollPoint;
+    NSPoint tempPoint = { max(-[scrollView() scrollOrigin].x, floatPoint.x), max(-[scrollView() scrollOrigin].y, floatPoint.y) };  // Don't use NSMakePoint to work around 4213314.
+    [documentView() scrollPoint:tempPoint];
     END_BLOCK_OBJC_EXCEPTIONS;
 }
 

Modified: trunk/Source/WebCore/platform/ios/wak/WAKScrollView.mm (173580 => 173581)


--- trunk/Source/WebCore/platform/ios/wak/WAKScrollView.mm	2014-09-12 22:00:13 UTC (rev 173580)
+++ trunk/Source/WebCore/platform/ios/wak/WAKScrollView.mm	2014-09-12 22:20:29 UTC (rev 173581)
@@ -28,7 +28,6 @@
 
 #if PLATFORM(IOS)
 
-#import "FloatPoint.h"
 #import "WAKAppKitStubs.h"
 #import "WAKClipView.h"
 #import "WAKViewInternal.h"
@@ -233,7 +232,7 @@
     UNUSED_PARAM(repaint);
 }
 
-- (void)setScrollOrigin:(WebCore::FloatPoint)scrollOrigin updatePositionAtAll:(BOOL)updatePositionAtAll immediately:(BOOL)updatePositionImmediately
+- (void)setScrollOrigin:(NSPoint)scrollOrigin updatePositionAtAll:(BOOL)updatePositionAtAll immediately:(BOOL)updatePositionImmediately
 {
     UNUSED_PARAM(updatePositionAtAll);
     UNUSED_PARAM(updatePositionImmediately);
@@ -242,12 +241,12 @@
     // so we don't have to check for equivalence here.
     _scrollOrigin = scrollOrigin;
 
-    [_documentView setBoundsOrigin:NSMakePoint(-scrollOrigin.x(), -scrollOrigin.y())];
+    [_documentView setBoundsOrigin:NSMakePoint(-scrollOrigin.x, -scrollOrigin.y)];
 }
 
-- (WebCore::FloatPoint)scrollOrigin
+- (NSPoint)scrollOrigin
 {
-    return WebCore::FloatPoint(_scrollOrigin);
+    return _scrollOrigin;
 }
 
 #pragma mark -

Modified: trunk/Source/WebCore/platform/mac/ScrollViewMac.mm (173580 => 173581)


--- trunk/Source/WebCore/platform/mac/ScrollViewMac.mm	2014-09-12 22:00:13 UTC (rev 173580)
+++ trunk/Source/WebCore/platform/mac/ScrollViewMac.mm	2014-09-12 22:20:29 UTC (rev 173581)
@@ -202,7 +202,7 @@
 {
     BEGIN_BLOCK_OBJC_EXCEPTIONS;
     NSPoint floatPoint = scrollPoint;
-    NSPoint tempPoint = { std::fmax(-[scrollView() scrollOrigin].x(), floatPoint.x), std::fmax(-[scrollView() scrollOrigin].y(), floatPoint.y) }; // Don't use NSMakePoint to work around 4213314.
+    NSPoint tempPoint = { std::max(-[scrollView() scrollOrigin].x, floatPoint.x), std::max(-[scrollView() scrollOrigin].y, floatPoint.y) };  // Don't use NSMakePoint to work around 4213314.
 
 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101000
     // AppKit has the inset factored into all of its scroll positions. In WebCore, we use positions that ignore

Modified: trunk/Source/WebKit/mac/ChangeLog (173580 => 173581)


--- trunk/Source/WebKit/mac/ChangeLog	2014-09-12 22:00:13 UTC (rev 173580)
+++ trunk/Source/WebKit/mac/ChangeLog	2014-09-12 22:20:29 UTC (rev 173581)
@@ -1,3 +1,16 @@
+2014-09-12  Commit Queue  <commit-qu...@webkit.org>
+
+        Unreviewed, rolling out r173575.
+        https://bugs.webkit.org/show_bug.cgi?id=136790
+
+        Failing tests (Requested by enrica on #webkit).
+
+        Reverted changeset:
+
+        "Remove PLATFORM(IOS) from WebCore/editing (Part 3)."
+        https://bugs.webkit.org/show_bug.cgi?id=136474
+        http://trac.webkit.org/changeset/173575
+
 2014-09-12  Enrica Casucci  <enr...@apple.com>
 
         Remove PLATFORM(IOS) from WebCore/editing (Part 3).

Modified: trunk/Source/WebKit/mac/WebCoreSupport/WebEditorClient.h (173580 => 173581)


--- trunk/Source/WebKit/mac/WebCoreSupport/WebEditorClient.h	2014-09-12 22:00:13 UTC (rev 173580)
+++ trunk/Source/WebKit/mac/WebCoreSupport/WebEditorClient.h	2014-09-12 22:20:29 UTC (rev 173581)
@@ -34,10 +34,6 @@
 #import <wtf/Vector.h>
 #import <wtf/text/StringView.h>
 
-#if PLATFORM(IOS)
-#import <WebCore/WAKAppKitStubs.h>
-#endif
-
 @class WebView;
 @class WebEditorUndoTarget;
 
@@ -180,32 +176,6 @@
 #endif
 };
 
-#if PLATFORM(COCOA)
-inline NSSelectionAffinity kit(WebCore::EAffinity affinity)
-{
-    switch (affinity) {
-    case WebCore::EAffinity::UPSTREAM:
-        return NSSelectionAffinityUpstream;
-    case WebCore::EAffinity::DOWNSTREAM:
-        return NSSelectionAffinityDownstream;
-    }
-    ASSERT_NOT_REACHED();
-    return NSSelectionAffinityUpstream;
-}
-
-inline WebCore::EAffinity core(NSSelectionAffinity affinity)
-{
-    switch (affinity) {
-    case NSSelectionAffinityUpstream:
-        return WebCore::EAffinity::UPSTREAM;
-    case NSSelectionAffinityDownstream:
-        return WebCore::EAffinity::DOWNSTREAM;
-    }
-    ASSERT_NOT_REACHED();
-    return WebCore::EAffinity::UPSTREAM;
-}
-#endif
-
 #if PLATFORM(IOS)
 
 inline bool WebEditorClient::isGrammarCheckingEnabled()

Modified: trunk/Source/WebKit/mac/WebView/WebFrameView.mm (173580 => 173581)


--- trunk/Source/WebKit/mac/WebView/WebFrameView.mm	2014-09-12 22:00:13 UTC (rev 173580)
+++ trunk/Source/WebKit/mac/WebView/WebFrameView.mm	2014-09-12 22:20:29 UTC (rev 173581)
@@ -669,8 +669,8 @@
     if (![self _isScrollable])
         return NO;
     NSPoint point = [(NSView *)[[self _scrollView] documentView] frame].origin;
-    point.x += [[self _scrollView] scrollOrigin].x();
-    point.y += [[self _scrollView] scrollOrigin].y();
+    point.x += [[self _scrollView] scrollOrigin].x;
+    point.y += [[self _scrollView] scrollOrigin].y;
     return [[self _contentView] _scrollTo:&point animate:YES];
 }
 
@@ -700,9 +700,9 @@
     
     // Reset the position opposite to the block progression direction.
     if (isVertical)
-        point.x += [[self _scrollView] scrollOrigin].x();
+        point.x += [[self _scrollView] scrollOrigin].x;
     else
-        point.y += [[self _scrollView] scrollOrigin].y();
+        point.y += [[self _scrollView] scrollOrigin].y;
     return [[self _contentView] _scrollTo:&point animate:YES];
 }
 

Modified: trunk/Source/WebKit2/ChangeLog (173580 => 173581)


--- trunk/Source/WebKit2/ChangeLog	2014-09-12 22:00:13 UTC (rev 173580)
+++ trunk/Source/WebKit2/ChangeLog	2014-09-12 22:20:29 UTC (rev 173581)
@@ -1,3 +1,16 @@
+2014-09-12  Commit Queue  <commit-qu...@webkit.org>
+
+        Unreviewed, rolling out r173575.
+        https://bugs.webkit.org/show_bug.cgi?id=136790
+
+        Failing tests (Requested by enrica on #webkit).
+
+        Reverted changeset:
+
+        "Remove PLATFORM(IOS) from WebCore/editing (Part 3)."
+        https://bugs.webkit.org/show_bug.cgi?id=136474
+        http://trac.webkit.org/changeset/173575
+
 2014-09-12  Enrica Casucci  <enr...@apple.com>
 
         Remove PLATFORM(IOS) from WebCore/editing (Part 3).

Modified: trunk/Source/WebKit2/WebProcess/InjectedBundle/API/mac/WKDOMInternals.mm (173580 => 173581)


--- trunk/Source/WebKit2/WebProcess/InjectedBundle/API/mac/WKDOMInternals.mm	2014-09-12 22:00:13 UTC (rev 173580)
+++ trunk/Source/WebKit2/WebProcess/InjectedBundle/API/mac/WKDOMInternals.mm	2014-09-12 22:20:29 UTC (rev 173581)
@@ -40,10 +40,6 @@
 #import "WKDOMDocument.h"
 #import "WKDOMText.h"
 
-#if PLATFORM(IOS)
-#import <WebCore/WAKAppKitStubs.h>
-#endif
-
 namespace WebKit {
 
 template<typename WebCoreType, typename WKDOMType>

Modified: trunk/Source/WebKit2/WebProcess/WebPage/WKAccessibilityWebPageObjectIOS.mm (173580 => 173581)


--- trunk/Source/WebKit2/WebProcess/WebPage/WKAccessibilityWebPageObjectIOS.mm	2014-09-12 22:00:13 UTC (rev 173580)
+++ trunk/Source/WebKit2/WebProcess/WebPage/WKAccessibilityWebPageObjectIOS.mm	2014-09-12 22:20:29 UTC (rev 173581)
@@ -69,7 +69,7 @@
     return m_page->pageScaleFactor();
 }
 
-- (id)accessibilityHitTest:(WebCore::FloatPoint)point
+- (id)accessibilityHitTest:(NSPoint)point
 {
     if (!m_page)
         return nil;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to