Title: [236851] trunk/Source/WebKitLegacy/mac
Revision
236851
Author
m...@apple.com
Date
2018-10-04 14:14:58 -0700 (Thu, 04 Oct 2018)

Log Message

Retried to fix 32-bit macOS builds after r236846.

* WebView/WebHTMLView.mm:
(-[WebHTMLView setMarkedText:selectedRange:]):

Modified Paths

Diff

Modified: trunk/Source/WebKitLegacy/mac/ChangeLog (236850 => 236851)


--- trunk/Source/WebKitLegacy/mac/ChangeLog	2018-10-04 21:12:04 UTC (rev 236850)
+++ trunk/Source/WebKitLegacy/mac/ChangeLog	2018-10-04 21:14:58 UTC (rev 236851)
@@ -2,6 +2,13 @@
 
         Retried to fix 32-bit macOS builds after r236846.
 
+        * WebView/WebHTMLView.mm:
+        (-[WebHTMLView setMarkedText:selectedRange:]):
+
+2018-10-04  Dan Bernstein  <m...@apple.com>
+
+        Retried to fix 32-bit macOS builds after r236846.
+
         * Carbon/HIWebView.mm:
         (ActiveStateChanged):
 

Modified: trunk/Source/WebKitLegacy/mac/WebView/WebHTMLView.mm (236850 => 236851)


--- trunk/Source/WebKitLegacy/mac/WebView/WebHTMLView.mm	2018-10-04 21:12:04 UTC (rev 236850)
+++ trunk/Source/WebKitLegacy/mac/WebView/WebHTMLView.mm	2018-10-04 21:14:58 UTC (rev 236851)
@@ -888,6 +888,7 @@
 - (void)_updateSelectionForInputManager;
 #endif
 #if PLATFORM(IOS)
+- (void)setMarkedText:(id)string selectedRange:(NSRange)newSelRange;
 - (void)doCommandBySelector:(SEL)selector;
 #endif
 @end
@@ -5690,64 +5691,6 @@
 }
 #endif
 
-IGNORE_WARNINGS_BEGIN("deprecated-implementations")
-- (void)setMarkedText:(id)string selectedRange:(NSRange)newSelRange
-IGNORE_WARNINGS_END
-{
-    [self _executeSavedKeypressCommands];
-
-#if PLATFORM(MAC)
-    BOOL isAttributedString = [string isKindOfClass:[NSAttributedString class]];
-    ASSERT(isAttributedString || [string isKindOfClass:[NSString class]]);
-
-    LOG(TextInput, "setMarkedText:\"%@\" selectedRange:(%u, %u)", isAttributedString ? [string string] : string, newSelRange.location, newSelRange.length);
-#endif
-
-    // Use pointer to get parameters passed to us by the caller of interpretKeyEvents.
-    auto* parameters = _private->interpretKeyEventsParameters;
-
-    if (parameters) {
-        parameters->eventInterpretationHadSideEffects = true;
-        parameters->consumedByIM = false;
-    }
-    
-    Frame* coreFrame = core([self _frame]);
-    if (!coreFrame)
-        return;
-
-    if (![self _isEditable])
-        return;
-
-    Vector<CompositionUnderline> underlines;
-    NSString *text;
-    NSRange replacementRange = { NSNotFound, 0 };
-
-#if PLATFORM(MAC)
-    if (isAttributedString) {
-        // FIXME: We ignore most attributes from the string, so an input method cannot specify e.g. a font or a glyph variation.
-        text = [string string];
-        NSString *rangeString = [string attribute:NSTextInputReplacementRangeAttributeName atIndex:0 longestEffectiveRange:0 inRange:NSMakeRange(0, [text length])];
-        LOG(TextInput, "    ReplacementRange: %@", rangeString);
-        // The AppKit adds a 'secret' property to the string that contains the replacement range.
-        // The replacement range is the range of the text that should be replaced with the new string.
-        if (rangeString)
-            replacementRange = NSRangeFromString(rangeString);
-
-        extractUnderlines(string, underlines);
-    } else {
-        text = string;
-        underlines.append(CompositionUnderline(0, [text length], CompositionUnderlineColor::TextColor, Color::black, false));
-    }
-#else
-    text = string;
-#endif
-
-    if (replacementRange.location != NSNotFound)
-        [[self _frame] _selectNSRange:replacementRange];
-
-    coreFrame->editor().setComposition(text, underlines, newSelRange.location, NSMaxRange(newSelRange));
-}
-
 @end
 
 @implementation WebHTMLView (WebInternal)
@@ -6563,6 +6506,64 @@
 #endif
 
 IGNORE_WARNINGS_BEGIN("deprecated-implementations")
+- (void)setMarkedText:(id)string selectedRange:(NSRange)newSelRange
+IGNORE_WARNINGS_END
+{
+    [self _executeSavedKeypressCommands];
+
+#if PLATFORM(MAC)
+    BOOL isAttributedString = [string isKindOfClass:[NSAttributedString class]];
+    ASSERT(isAttributedString || [string isKindOfClass:[NSString class]]);
+
+    LOG(TextInput, "setMarkedText:\"%@\" selectedRange:(%u, %u)", isAttributedString ? [string string] : string, newSelRange.location, newSelRange.length);
+#endif
+
+    // Use pointer to get parameters passed to us by the caller of interpretKeyEvents.
+    auto* parameters = _private->interpretKeyEventsParameters;
+
+    if (parameters) {
+        parameters->eventInterpretationHadSideEffects = true;
+        parameters->consumedByIM = false;
+    }
+    
+    Frame* coreFrame = core([self _frame]);
+    if (!coreFrame)
+        return;
+
+    if (![self _isEditable])
+        return;
+
+    Vector<CompositionUnderline> underlines;
+    NSString *text;
+    NSRange replacementRange = { NSNotFound, 0 };
+
+#if PLATFORM(MAC)
+    if (isAttributedString) {
+        // FIXME: We ignore most attributes from the string, so an input method cannot specify e.g. a font or a glyph variation.
+        text = [string string];
+        NSString *rangeString = [string attribute:NSTextInputReplacementRangeAttributeName atIndex:0 longestEffectiveRange:0 inRange:NSMakeRange(0, [text length])];
+        LOG(TextInput, "    ReplacementRange: %@", rangeString);
+        // The AppKit adds a 'secret' property to the string that contains the replacement range.
+        // The replacement range is the range of the text that should be replaced with the new string.
+        if (rangeString)
+            replacementRange = NSRangeFromString(rangeString);
+
+        extractUnderlines(string, underlines);
+    } else {
+        text = string;
+        underlines.append(CompositionUnderline(0, [text length], CompositionUnderlineColor::TextColor, Color::black, false));
+    }
+#else
+    text = string;
+#endif
+
+    if (replacementRange.location != NSNotFound)
+        [[self _frame] _selectNSRange:replacementRange];
+
+    coreFrame->editor().setComposition(text, underlines, newSelRange.location, NSMaxRange(newSelRange));
+}
+
+IGNORE_WARNINGS_BEGIN("deprecated-implementations")
 - (void)doCommandBySelector:(SEL)selector
 IGNORE_WARNINGS_END
 {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to