1/*
2 * Copyright (C) 2017 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.testing.LeakCheck;
18
19import com.android.internal.statusbar.StatusBarIcon;
20import com.android.systemui.statusbar.phone.StatusBarIconController;
21import com.android.systemui.statusbar.phone.StatusBarIconController.IconManager;
22
23public class FakeStatusBarIconController extends BaseLeakChecker<IconManager>
24        implements StatusBarIconController {
25
26    public FakeStatusBarIconController(LeakCheck test) {
27        super(test, "StatusBarGroup");
28    }
29
30    @Override
31    public void addIconGroup(IconManager iconManager) {
32        addCallback(iconManager);
33    }
34
35    @Override
36    public void removeIconGroup(IconManager iconManager) {
37        removeCallback(iconManager);
38    }
39
40    @Override
41    public void setExternalIcon(String slot) {
42
43    }
44
45    @Override
46    public void setIcon(String slot, int resourceId, CharSequence contentDescription) {
47
48    }
49
50    @Override
51    public void setIcon(String slot, StatusBarIcon icon) {
52
53    }
54
55    @Override
56    public void setIconVisibility(String slotTty, boolean b) {
57
58    }
59
60    @Override
61    public void removeIcon(String slot) {
62
63    }
64}
65