1bbadff8603ca6922a0ef89338bee5b59d6dcf641Jason Monk/*
2bbadff8603ca6922a0ef89338bee5b59d6dcf641Jason Monk * Copyright 2015, The Android Open Source Project
3bbadff8603ca6922a0ef89338bee5b59d6dcf641Jason Monk *
4bbadff8603ca6922a0ef89338bee5b59d6dcf641Jason Monk * Licensed under the Apache License, Version 2.0 (the "License");
5bbadff8603ca6922a0ef89338bee5b59d6dcf641Jason Monk * you may not use this file except in compliance with the License.
6bbadff8603ca6922a0ef89338bee5b59d6dcf641Jason Monk * You may obtain a copy of the License at
7bbadff8603ca6922a0ef89338bee5b59d6dcf641Jason Monk *
8bbadff8603ca6922a0ef89338bee5b59d6dcf641Jason Monk *     http://www.apache.org/licenses/LICENSE-2.0
9bbadff8603ca6922a0ef89338bee5b59d6dcf641Jason Monk *
10bbadff8603ca6922a0ef89338bee5b59d6dcf641Jason Monk * Unless required by applicable law or agreed to in writing, software
11bbadff8603ca6922a0ef89338bee5b59d6dcf641Jason Monk * distributed under the License is distributed on an "AS IS" BASIS,
12bbadff8603ca6922a0ef89338bee5b59d6dcf641Jason Monk * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13bbadff8603ca6922a0ef89338bee5b59d6dcf641Jason Monk * See the License for the specific language governing permissions and
14bbadff8603ca6922a0ef89338bee5b59d6dcf641Jason Monk * limitations under the License.
15bbadff8603ca6922a0ef89338bee5b59d6dcf641Jason Monk */
16bbadff8603ca6922a0ef89338bee5b59d6dcf641Jason Monkpackage android.service.quicksettings;
17bbadff8603ca6922a0ef89338bee5b59d6dcf641Jason Monk
18bbadff8603ca6922a0ef89338bee5b59d6dcf641Jason Monk/**
19bbadff8603ca6922a0ef89338bee5b59d6dcf641Jason Monk * @hide
20bbadff8603ca6922a0ef89338bee5b59d6dcf641Jason Monk */
21bbadff8603ca6922a0ef89338bee5b59d6dcf641Jason Monkoneway interface IQSTileService {
22bbadff8603ca6922a0ef89338bee5b59d6dcf641Jason Monk    void onTileAdded();
23bbadff8603ca6922a0ef89338bee5b59d6dcf641Jason Monk    void onTileRemoved();
24bbadff8603ca6922a0ef89338bee5b59d6dcf641Jason Monk    void onStartListening();
25bbadff8603ca6922a0ef89338bee5b59d6dcf641Jason Monk    void onStopListening();
268f7f3184d55850b1c4d2036319794151f564e9c0Jason Monk    void onClick(IBinder wtoken);
279429513cc3ea6e58e330865bd621b57cb3477551Jason Monk    void onUnlockComplete();
28bbadff8603ca6922a0ef89338bee5b59d6dcf641Jason Monk}
29