1/*
2 * Copyright (C) 2012 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 com.android.layoutlib.bridge.android;
18
19import android.os.IBinder;
20import android.os.IPowerManager;
21import android.os.RemoteException;
22import android.os.WorkSource;
23
24/**
25 * Fake implementation of IPowerManager.
26 *
27 */
28public class BridgePowerManager implements IPowerManager {
29
30    @Override
31    public boolean isScreenOn() throws RemoteException {
32        return true;
33    }
34
35    @Override
36    public IBinder asBinder() {
37        // pass for now.
38        return null;
39    }
40
41    @Override
42    public void acquireWakeLock(IBinder arg0, int arg1, String arg2, String arg2_5, WorkSource arg3)
43            throws RemoteException {
44        // pass for now.
45    }
46
47    @Override
48    public void acquireWakeLockWithUid(IBinder arg0, int arg1, String arg2, String arg2_5, int arg3)
49            throws RemoteException {
50        // pass for now.
51    }
52
53    @Override
54    public void crash(String arg0) throws RemoteException {
55        // pass for now.
56    }
57
58    @Override
59    public void goToSleep(long arg0, int arg1) throws RemoteException {
60        // pass for now.
61    }
62
63    @Override
64    public void nap(long arg0) throws RemoteException {
65        // pass for now.
66    }
67
68    @Override
69    public void reboot(boolean confirm, String reason, boolean wait) {
70        // pass for now.
71    }
72
73    @Override
74    public void shutdown(boolean confirm, boolean wait) {
75        // pass for now.
76    }
77
78    @Override
79    public void releaseWakeLock(IBinder arg0, int arg1) throws RemoteException {
80        // pass for now.
81    }
82
83    @Override
84    public void updateWakeLockUids(IBinder arg0, int[] arg1) throws RemoteException {
85        // pass for now.
86    }
87
88    @Override
89    public void setAttentionLight(boolean arg0, int arg1) throws RemoteException {
90        // pass for now.
91    }
92
93    @Override
94    public void setTemporaryScreenAutoBrightnessAdjustmentSettingOverride(float arg0) throws RemoteException {
95        // pass for now.
96    }
97
98    @Override
99    public void setTemporaryScreenBrightnessSettingOverride(int arg0) throws RemoteException {
100        // pass for now.
101    }
102
103    @Override
104    public void setMaximumScreenOffTimeoutFromDeviceAdmin(int arg0) throws RemoteException {
105        // pass for now.
106    }
107
108    @Override
109    public void setStayOnSetting(int arg0) throws RemoteException {
110        // pass for now.
111    }
112
113    @Override
114    public void updateWakeLockWorkSource(IBinder arg0, WorkSource arg1) throws RemoteException {
115        // pass for now.
116    }
117
118    @Override
119    public boolean isWakeLockLevelSupported(int level) throws RemoteException {
120        // pass for now.
121        return true;
122    }
123
124    @Override
125    public void userActivity(long time, int event, int flags) throws RemoteException {
126        // pass for now.
127    }
128
129    @Override
130    public void wakeUp(long time) throws RemoteException {
131        // pass for now.
132    }
133}
134