FakeZenModeController.java revision 9abca5e9f88c47579f8334c6c48741a259185b9b
1/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
5 * except in compliance with the License. You may obtain a copy of the License at
6 *
7 *      http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software distributed under the
10 * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
11 * KIND, either express or implied. See the License for the specific language governing
12 * permissions and limitations under the License.
13 */
14
15package com.android.systemui.utils.leaks;
16
17import android.content.ComponentName;
18import android.net.Uri;
19import android.service.notification.ZenModeConfig;
20import android.service.notification.ZenModeConfig.ZenRule;
21
22import com.android.systemui.statusbar.policy.ZenModeController;
23import com.android.systemui.statusbar.policy.ZenModeController.Callback;
24
25public class FakeZenModeController extends BaseLeakChecker<Callback> implements ZenModeController {
26    public FakeZenModeController(LeakCheckedTest test) {
27        super(test, "zen");
28    }
29
30    @Override
31    public void setZen(int zen, Uri conditionId, String reason) {
32
33    }
34
35    @Override
36    public int getZen() {
37        return 0;
38    }
39
40    @Override
41    public ZenRule getManualRule() {
42        return null;
43    }
44
45    @Override
46    public ZenModeConfig getConfig() {
47        return null;
48    }
49
50    @Override
51    public long getNextAlarm() {
52        return 0;
53    }
54
55    @Override
56    public void setUserId(int userId) {
57
58    }
59
60    @Override
61    public boolean isZenAvailable() {
62        return false;
63    }
64
65    @Override
66    public ComponentName getEffectsSuppressor() {
67        return null;
68    }
69
70    @Override
71    public boolean isCountdownConditionSupported() {
72        return false;
73    }
74
75    @Override
76    public int getCurrentUser() {
77        return 0;
78    }
79
80    @Override
81    public boolean isVolumeRestricted() {
82        return false;
83    }
84}
85