139e5e947447bc611205404ae6a4690656f1aa0f9Michael Wright/*
239e5e947447bc611205404ae6a4690656f1aa0f9Michael Wright * Copyright (C) 2015 The Android Open Source Project
339e5e947447bc611205404ae6a4690656f1aa0f9Michael Wright *
439e5e947447bc611205404ae6a4690656f1aa0f9Michael Wright * Licensed under the Apache License, Version 2.0 (the "License");
539e5e947447bc611205404ae6a4690656f1aa0f9Michael Wright * you may not use this file except in compliance with the License.
639e5e947447bc611205404ae6a4690656f1aa0f9Michael Wright * You may obtain a copy of the License at
739e5e947447bc611205404ae6a4690656f1aa0f9Michael Wright *
839e5e947447bc611205404ae6a4690656f1aa0f9Michael Wright *      http://www.apache.org/licenses/LICENSE-2.0
939e5e947447bc611205404ae6a4690656f1aa0f9Michael Wright *
1039e5e947447bc611205404ae6a4690656f1aa0f9Michael Wright * Unless required by applicable law or agreed to in writing, software
1139e5e947447bc611205404ae6a4690656f1aa0f9Michael Wright * distributed under the License is distributed on an "AS IS" BASIS,
1239e5e947447bc611205404ae6a4690656f1aa0f9Michael Wright * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1339e5e947447bc611205404ae6a4690656f1aa0f9Michael Wright * See the License for the specific language governing permissions and
1439e5e947447bc611205404ae6a4690656f1aa0f9Michael Wright * limitations under the License.
1539e5e947447bc611205404ae6a4690656f1aa0f9Michael Wright */
1639e5e947447bc611205404ae6a4690656f1aa0f9Michael Wright
1739e5e947447bc611205404ae6a4690656f1aa0f9Michael Wrightpackage android.hardware.input;
1839e5e947447bc611205404ae6a4690656f1aa0f9Michael Wright
1939e5e947447bc611205404ae6a4690656f1aa0f9Michael Wright/** @hide */
2039e5e947447bc611205404ae6a4690656f1aa0f9Michael Wrightinterface ITabletModeChangedListener {
2139e5e947447bc611205404ae6a4690656f1aa0f9Michael Wright    /* Called when the device enters or exits tablet mode. */
2239e5e947447bc611205404ae6a4690656f1aa0f9Michael Wright    oneway void onTabletModeChanged(long whenNanos, boolean inTabletMode);
2339e5e947447bc611205404ae6a4690656f1aa0f9Michael Wright}
24