2018-10-24 18:24:11 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2018-09-21 00:30:26 +00:00
|
|
|
From: Cheng Zhao <zcbenz@gmail.com>
|
|
|
|
Date: Thu, 20 Sep 2018 17:46:28 -0700
|
|
|
|
Subject: render_widget_host_view_mac.patch
|
|
|
|
|
|
|
|
|
2018-09-14 05:02:16 +00:00
|
|
|
diff --git a/content/browser/renderer_host/render_widget_host_view_cocoa.mm b/content/browser/renderer_host/render_widget_host_view_cocoa.mm
|
2019-02-04 05:49:22 +00:00
|
|
|
index 673c7dacfa323462af4cc53843294e512d342dc7..8e8fae2db94886f4fab190151427e74d627a52ca 100644
|
2018-09-14 05:02:16 +00:00
|
|
|
--- a/content/browser/renderer_host/render_widget_host_view_cocoa.mm
|
|
|
|
+++ b/content/browser/renderer_host/render_widget_host_view_cocoa.mm
|
2019-01-16 18:07:52 +00:00
|
|
|
@@ -144,6 +144,11 @@ void ExtractUnderlines(NSAttributedString* string,
|
2018-09-14 05:02:16 +00:00
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
+@interface NSWindow (AtomCustomMethods)
|
|
|
|
+- (BOOL)acceptsFirstMouse;
|
|
|
|
+- (BOOL)disableAutoHideCursor;
|
|
|
|
+@end
|
|
|
|
+
|
|
|
|
// These are not documented, so use only after checking -respondsToSelector:.
|
|
|
|
@interface NSApplication (UndocumentedSpeechMethods)
|
|
|
|
- (void)speakString:(NSString*)string;
|
2019-01-16 18:07:52 +00:00
|
|
|
@@ -403,6 +408,9 @@ - (BOOL)acceptsMouseEventsWhenInactive {
|
2018-09-14 05:02:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL)acceptsFirstMouse:(NSEvent*)theEvent {
|
|
|
|
+ if ([self.window respondsToSelector:@selector(acceptsFirstMouse)] &&
|
|
|
|
+ [self.window acceptsFirstMouse])
|
|
|
|
+ return YES;
|
|
|
|
return [self acceptsMouseEventsWhenInactive];
|
|
|
|
}
|
|
|
|
|
2019-01-16 18:07:52 +00:00
|
|
|
@@ -765,6 +773,10 @@ - (void)keyEvent:(NSEvent*)theEvent wasKeyEquivalent:(BOOL)equiv {
|
2018-09-14 05:02:16 +00:00
|
|
|
eventType == NSKeyDown &&
|
|
|
|
!(modifierFlags & NSCommandKeyMask);
|
|
|
|
|
|
|
|
+ if ([theEvent.window respondsToSelector:@selector(disableAutoHideCursor)] &&
|
|
|
|
+ [theEvent.window disableAutoHideCursor])
|
|
|
|
+ shouldAutohideCursor = NO;
|
|
|
|
+
|
|
|
|
// We only handle key down events and just simply forward other events.
|
|
|
|
if (eventType != NSKeyDown) {
|
2019-01-12 01:00:43 +00:00
|
|
|
clientHelper_->ForwardKeyboardEvent(event, latency_info);
|
2019-02-04 05:49:22 +00:00
|
|
|
@@ -1513,9 +1525,11 @@ - (id)accessibilityFocusedUIElement {
|
2018-09-14 05:02:16 +00:00
|
|
|
// Since this implementation doesn't have to wait any IPC calls, this doesn't
|
|
|
|
// make any key-typing jank. --hbono 7/23/09
|
|
|
|
//
|
|
|
|
+#ifndef MAS_BUILD
|
|
|
|
extern "C" {
|
|
|
|
extern NSString* NSTextInputReplacementRangeAttributeName;
|
|
|
|
}
|
|
|
|
+#endif
|
|
|
|
|
|
|
|
- (NSArray*)validAttributesForMarkedText {
|
|
|
|
// This code is just copied from WebKit except renaming variables.
|
2019-02-04 05:49:22 +00:00
|
|
|
@@ -1524,7 +1538,10 @@ - (NSArray*)validAttributesForMarkedText {
|
2018-09-14 05:02:16 +00:00
|
|
|
initWithObjects:NSUnderlineStyleAttributeName,
|
|
|
|
NSUnderlineColorAttributeName,
|
|
|
|
NSMarkedClauseSegmentAttributeName,
|
|
|
|
- NSTextInputReplacementRangeAttributeName, nil]);
|
|
|
|
+#ifndef MAS_BUILD
|
|
|
|
+ NSTextInputReplacementRangeAttributeName,
|
|
|
|
+#endif
|
|
|
|
+ nil]);
|
|
|
|
}
|
|
|
|
return validAttributesForMarkedText_.get();
|
|
|
|
}
|
2018-09-14 18:03:43 +00:00
|
|
|
diff --git a/content/browser/renderer_host/render_widget_host_view_mac.mm b/content/browser/renderer_host/render_widget_host_view_mac.mm
|
2019-01-24 09:42:21 +00:00
|
|
|
index 7bdf6790c3b2275979cfcbe8c100c05e0f668ee7..82e72fd8bd923cb013dc655c83ccf4b5838d569f 100644
|
2018-09-14 18:03:43 +00:00
|
|
|
--- a/content/browser/renderer_host/render_widget_host_view_mac.mm
|
|
|
|
+++ b/content/browser/renderer_host/render_widget_host_view_mac.mm
|
2019-01-08 23:59:47 +00:00
|
|
|
@@ -61,6 +61,7 @@
|
2018-09-21 00:30:26 +00:00
|
|
|
#include "ui/events/keycodes/dom/dom_keyboard_layout_map.h"
|
2018-09-14 18:03:43 +00:00
|
|
|
#include "ui/gfx/geometry/dip_util.h"
|
|
|
|
#include "ui/gfx/mac/coordinate_conversion.h"
|
|
|
|
+#include "ui/gl/gpu_switching_manager.h"
|
|
|
|
|
|
|
|
using blink::WebInputEvent;
|
|
|
|
using blink::WebMouseEvent;
|