1464ff7c131b097e1320a6d7b9207ccbf3eb70d22Tadashi G. Takaoka/*
2464ff7c131b097e1320a6d7b9207ccbf3eb70d22Tadashi G. Takaoka * Copyright (C) 2014 The Android Open Source Project
3464ff7c131b097e1320a6d7b9207ccbf3eb70d22Tadashi G. Takaoka *
4464ff7c131b097e1320a6d7b9207ccbf3eb70d22Tadashi G. Takaoka * Licensed under the Apache License, Version 2.0 (the "License");
5464ff7c131b097e1320a6d7b9207ccbf3eb70d22Tadashi G. Takaoka * you may not use this file except in compliance with the License.
6464ff7c131b097e1320a6d7b9207ccbf3eb70d22Tadashi G. Takaoka * You may obtain a copy of the License at
7464ff7c131b097e1320a6d7b9207ccbf3eb70d22Tadashi G. Takaoka *
8464ff7c131b097e1320a6d7b9207ccbf3eb70d22Tadashi G. Takaoka *      http://www.apache.org/licenses/LICENSE-2.0
9464ff7c131b097e1320a6d7b9207ccbf3eb70d22Tadashi G. Takaoka *
10464ff7c131b097e1320a6d7b9207ccbf3eb70d22Tadashi G. Takaoka * Unless required by applicable law or agreed to in writing, software
11464ff7c131b097e1320a6d7b9207ccbf3eb70d22Tadashi G. Takaoka * distributed under the License is distributed on an "AS IS" BASIS,
12464ff7c131b097e1320a6d7b9207ccbf3eb70d22Tadashi G. Takaoka * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13464ff7c131b097e1320a6d7b9207ccbf3eb70d22Tadashi G. Takaoka * See the License for the specific language governing permissions and
14464ff7c131b097e1320a6d7b9207ccbf3eb70d22Tadashi G. Takaoka * limitations under the License.
15464ff7c131b097e1320a6d7b9207ccbf3eb70d22Tadashi G. Takaoka */
16464ff7c131b097e1320a6d7b9207ccbf3eb70d22Tadashi G. Takaoka
17464ff7c131b097e1320a6d7b9207ccbf3eb70d22Tadashi G. Takaokapackage com.android.inputmethod.keyboard;
18464ff7c131b097e1320a6d7b9207ccbf3eb70d22Tadashi G. Takaoka
19464ff7c131b097e1320a6d7b9207ccbf3eb70d22Tadashi G. Takaokaimport android.test.suitebuilder.annotation.SmallTest;
20464ff7c131b097e1320a6d7b9207ccbf3eb70d22Tadashi G. Takaoka
21464ff7c131b097e1320a6d7b9207ccbf3eb70d22Tadashi G. Takaoka@SmallTest
22464ff7c131b097e1320a6d7b9207ccbf3eb70d22Tadashi G. Takaokapublic class KeyboardLayoutSetNavigateMoreKeysKlpTests
23464ff7c131b097e1320a6d7b9207ccbf3eb70d22Tadashi G. Takaoka        extends KeyboardLayoutSetNavigateMoreKeysBase {
24464ff7c131b097e1320a6d7b9207ccbf3eb70d22Tadashi G. Takaoka    @Override
25464ff7c131b097e1320a6d7b9207ccbf3eb70d22Tadashi G. Takaoka    protected int getKeyboardThemeForTests() {
26464ff7c131b097e1320a6d7b9207ccbf3eb70d22Tadashi G. Takaoka        return KeyboardTheme.THEME_ID_KLP;
27464ff7c131b097e1320a6d7b9207ccbf3eb70d22Tadashi G. Takaoka    }
28464ff7c131b097e1320a6d7b9207ccbf3eb70d22Tadashi G. Takaoka}
29