Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1734)

Unified Diff: Source/platform/KeyCodeConversionAndroid.cpp

Issue 207783002: Omit "int" when using "unsigned" modifier (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/platform/CheckedInt.h ('k') | Source/platform/TraceEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/KeyCodeConversionAndroid.cpp
diff --git a/Source/platform/KeyCodeConversionAndroid.cpp b/Source/platform/KeyCodeConversionAndroid.cpp
index 8fb64f4a3da30994f12c21cda8e3c5ab3435ca0f..42b218ae167e73d17b490efb4af3497c04983111 100644
--- a/Source/platform/KeyCodeConversionAndroid.cpp
+++ b/Source/platform/KeyCodeConversionAndroid.cpp
@@ -84,7 +84,7 @@ enum {
AKEYCODE_CHANNEL_DOWN = 167,
};
-int windowsKeyCodeForKeyEvent(unsigned int keyCode)
+int windowsKeyCodeForKeyEvent(unsigned keyCode)
{
// Does not provide all key codes, and does not handle all keys.
switch (keyCode) {
« no previous file with comments | « Source/platform/CheckedInt.h ('k') | Source/platform/TraceEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698