Title: [191796] trunk/Source/WebKit2
Revision
191796
Author
[email protected]
Date
2015-10-30 10:21:29 -0700 (Fri, 30 Oct 2015)

Log Message

Fix the build

* UIProcess/API/mac/WKView.mm:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (191795 => 191796)


--- trunk/Source/WebKit2/ChangeLog	2015-10-30 17:17:06 UTC (rev 191795)
+++ trunk/Source/WebKit2/ChangeLog	2015-10-30 17:21:29 UTC (rev 191796)
@@ -2,6 +2,12 @@
 
         Fix the build
 
+        * UIProcess/API/mac/WKView.mm:
+
+2015-10-30  Tim Horton  <[email protected]>
+
+        Fix the build
+
         * UIProcess/Cocoa/WebViewImpl.h:
         * UIProcess/Cocoa/WebViewImpl.mm:
         (WebKit::WebViewImpl::collectKeyboardLayoutCommandsForEvent):

Modified: trunk/Source/WebKit2/UIProcess/API/mac/WKView.mm (191795 => 191796)


--- trunk/Source/WebKit2/UIProcess/API/mac/WKView.mm	2015-10-30 17:17:06 UTC (rev 191795)
+++ trunk/Source/WebKit2/UIProcess/API/mac/WKView.mm	2015-10-30 17:21:29 UTC (rev 191796)
@@ -113,6 +113,14 @@
 using namespace WebKit;
 using namespace WebCore;
 
+#if USE(ASYNC_NSTEXTINPUTCLIENT)
+@interface NSTextInputContext (WKNSTextInputContextDetails)
+- (void)handleEvent:(NSEvent *)event completionHandler:(void(^)(BOOL handled))completionHandler;
+- (void)handleEventByInputMethod:(NSEvent *)event completionHandler:(void(^)(BOOL handled))completionHandler;
+- (BOOL)handleEventByKeyboardLayout:(NSEvent *)event;
+@end
+#endif
+
 @interface WKViewData : NSObject {
 @public
     std::unique_ptr<PageClientImpl> _pageClient;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to