19d9c6a22548670bf017e69fd5d0f47134a18b53fChris Banes/*
29d9c6a22548670bf017e69fd5d0f47134a18b53fChris Banes * Copyright (C) 2015 The Android Open Source Project
39d9c6a22548670bf017e69fd5d0f47134a18b53fChris Banes *
49d9c6a22548670bf017e69fd5d0f47134a18b53fChris Banes * Licensed under the Apache License, Version 2.0 (the "License");
59d9c6a22548670bf017e69fd5d0f47134a18b53fChris Banes * you may not use this file except in compliance with the License.
69d9c6a22548670bf017e69fd5d0f47134a18b53fChris Banes * You may obtain a copy of the License at
79d9c6a22548670bf017e69fd5d0f47134a18b53fChris Banes *
89d9c6a22548670bf017e69fd5d0f47134a18b53fChris Banes *      http://www.apache.org/licenses/LICENSE-2.0
99d9c6a22548670bf017e69fd5d0f47134a18b53fChris Banes *
109d9c6a22548670bf017e69fd5d0f47134a18b53fChris Banes * Unless required by applicable law or agreed to in writing, software
119d9c6a22548670bf017e69fd5d0f47134a18b53fChris Banes * distributed under the License is distributed on an "AS IS" BASIS,
129d9c6a22548670bf017e69fd5d0f47134a18b53fChris Banes * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
139d9c6a22548670bf017e69fd5d0f47134a18b53fChris Banes * See the License for the specific language governing permissions and
149d9c6a22548670bf017e69fd5d0f47134a18b53fChris Banes * limitations under the License.
159d9c6a22548670bf017e69fd5d0f47134a18b53fChris Banes */
169d9c6a22548670bf017e69fd5d0f47134a18b53fChris Banes
179d9c6a22548670bf017e69fd5d0f47134a18b53fChris Banespackage android.support.v7.app;
189d9c6a22548670bf017e69fd5d0f47134a18b53fChris Banes
199d9c6a22548670bf017e69fd5d0f47134a18b53fChris Banespublic class KeyboardShortcutsTestCaseWithWindowDecor
209d9c6a22548670bf017e69fd5d0f47134a18b53fChris Banes        extends BaseKeyboardShortcutsTestCase<WindowDecorActionBarActivity> {
219d9c6a22548670bf017e69fd5d0f47134a18b53fChris Banes    public KeyboardShortcutsTestCaseWithWindowDecor() {
229d9c6a22548670bf017e69fd5d0f47134a18b53fChris Banes        super(WindowDecorActionBarActivity.class);
239d9c6a22548670bf017e69fd5d0f47134a18b53fChris Banes    }
249d9c6a22548670bf017e69fd5d0f47134a18b53fChris Banes}
25