Title: [127714] trunk/Source/WebKit/chromium
Revision
127714
Author
pe...@chromium.org
Date
2012-09-06 02:46:42 -0700 (Thu, 06 Sep 2012)

Log Message

[Chromium] Chromium Mac build fix after revision r127711
https://bugs.webkit.org/show_bug.cgi?id=95958

Unreviewed build fix.

This is a clear typo in the source file, so changing the function to
call locationModifiersFromWindowsKeyCode instead.

* src/mac/WebInputEventFactory.mm:
(WebKit::WebInputEventFactory::keyboardEvent):

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (127713 => 127714)


--- trunk/Source/WebKit/chromium/ChangeLog	2012-09-06 09:42:09 UTC (rev 127713)
+++ trunk/Source/WebKit/chromium/ChangeLog	2012-09-06 09:46:42 UTC (rev 127714)
@@ -1,3 +1,16 @@
+2012-09-06  Peter Beverloo  <pe...@chromium.org>
+
+        [Chromium] Chromium Mac build fix after revision r127711
+        https://bugs.webkit.org/show_bug.cgi?id=95958
+
+        Unreviewed build fix.
+
+        This is a clear typo in the source file, so changing the function to
+        call locationModifiersFromWindowsKeyCode instead.
+
+        * src/mac/WebInputEventFactory.mm:
+        (WebKit::WebInputEventFactory::keyboardEvent):
+
 2012-09-06  Raymes Khoury  <ray...@chromium.org>
 
         Added modifiers to distinguish between left/right Shift/Ctrl/Alt in WebInputEvents

Modified: trunk/Source/WebKit/chromium/src/mac/WebInputEventFactory.mm (127713 => 127714)


--- trunk/Source/WebKit/chromium/src/mac/WebInputEventFactory.mm	2012-09-06 09:42:09 UTC (rev 127713)
+++ trunk/Source/WebKit/chromium/src/mac/WebInputEventFactory.mm	2012-09-06 09:46:42 UTC (rev 127714)
@@ -608,7 +608,7 @@
 
     int windowsKeyCode = windowsKeyCodeForKeyEvent(event);
     result.windowsKeyCode = WebKeyboardEvent::windowsKeyCodeWithoutLocation(windowsKeyCode);
-    result.modifiers |= WebKeyboardEvent::locationModifiersFromKeyCode(windowsKeyCode);
+    result.modifiers |= WebKeyboardEvent::locationModifiersFromWindowsKeyCode(windowsKeyCode);
     result.nativeKeyCode = [event keyCode];
 
     NSString* textStr = textFromEvent(event);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to