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

Side by Side Diff: platform_tools/android/apps/sample_app/src/main/jni/AndroidKeyToSkKey.h

Issue 1215023017: Update Android Apps to use gradle (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: onlyIf Created 5 years, 4 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 unified diff | Download patch
OLDNEW
1 1
2 /* 2 /*
3 * Copyright 2011 Skia 3 * Copyright 2011 Skia
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 9
10 #ifndef _ANDROID_TO_SKIA_KEYCODES_H 10 #ifndef _ANDROID_TO_SKIA_KEYCODES_H
(...skipping 15 matching lines...) Expand all
26 case AKEYCODE_DPAD_DOWN: 26 case AKEYCODE_DPAD_DOWN:
27 return kDown_SkKey; 27 return kDown_SkKey;
28 case AKEYCODE_BACK: 28 case AKEYCODE_BACK:
29 return kBack_SkKey; 29 return kBack_SkKey;
30 default: 30 default:
31 return kNONE_SkKey; 31 return kNONE_SkKey;
32 } 32 }
33 } 33 }
34 34
35 #endif 35 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698