blob: 9877fc741b7b87bfd80817c3a5ac1deb0e3f1604 [file] [log] [blame]
Neil Fullerb5579072018-05-30 14:35:24 +01001/*
2 * Copyright (C) 2018 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.app.timedetector;
18
Neil Fuller3aedd492019-11-23 11:33:57 +000019import android.app.timedetector.ManualTimeSuggestion;
Neil Fulleraf3eeaf2019-10-15 14:37:37 +010020import android.app.timedetector.PhoneTimeSuggestion;
Neil Fuller4773b9d2018-06-08 18:44:49 +010021
Neil Fullerb5579072018-05-30 14:35:24 +010022/**
Neil Fulleraf3eeaf2019-10-15 14:37:37 +010023 * System private API to communicate with time detector service.
Neil Fullerb5579072018-05-30 14:35:24 +010024 *
25 * <p>Used by parts of the Android system with signals associated with the device's time to provide
26 * information to the Time Detector Service.
27 *
28 * <p>Use the {@link android.app.timedetector.TimeDetector} class rather than going through
29 * this Binder interface directly. See {@link android.app.timedetector.TimeDetectorService} for
30 * more complete documentation.
31 *
32 *
33 * {@hide}
34 */
35interface ITimeDetectorService {
Neil Fulleraf3eeaf2019-10-15 14:37:37 +010036 void suggestPhoneTime(in PhoneTimeSuggestion timeSuggestion);
Neil Fuller3aedd492019-11-23 11:33:57 +000037 void suggestManualTime(in ManualTimeSuggestion timeSuggestion);
Neil Fullerb5579072018-05-30 14:35:24 +010038}