Changeset 117022 in webkit
- Timestamp:
- May 14, 2012, 6:10:52 PM (14 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
platform/chromium/KeyCodeConversionAndroid.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r117021 r117022 1 2012-05-14 Alexandre Elias <aelias@google.com> 2 3 [chromium] Prevent KeyCodeConversionAndroid from breaking on next NDK roll 4 https://bugs.webkit.org/show_bug.cgi?id=86415 5 6 Reviewed by Adam Barth. 7 8 The new enum values added in this file have been added in recent 9 versions of the NDK, so this file will fail to compile with duplicate 10 enum error when we roll NDK to r7c or higher. A workaround is 11 to move our enum values to the WebCore namespace. When the NDK 12 upgrade is complete, we can delete them. 13 14 No new tests. (No-op change.) 15 16 * platform/chromium/KeyCodeConversionAndroid.cpp: 17 (WebCore): 18 1 19 2012-05-14 Beth Dakin <bdakin@apple.com> 2 20 -
trunk/Source/WebCore/platform/chromium/KeyCodeConversionAndroid.cpp
r112174 r117022 33 33 34 34 #include <android/keycodes.h> 35 36 namespace WebCore { 35 37 36 38 // The Android NDK does not provide values for these yet: … … 80 82 AKEYCODE_CHANNEL_DOWN = 167, 81 83 }; 82 83 namespace WebCore {84 84 85 85 int windowsKeyCodeForKeyEvent(unsigned int keyCode)
Note:
See TracChangeset
for help on using the changeset viewer.