BridgePowerManager.java revision da8738fabdc0fda6a02606d4d678f399e5d50f29
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 isInteractive() throws RemoteException {
32        return true;
33    }
34
35    @Override
36    public boolean isPowerSaveMode() throws RemoteException {
37        return false;
38    }
39
40    @Override
41    public IBinder asBinder() {
42        // pass for now.
43        return null;
44    }
45
46    @Override
47    public void acquireWakeLock(IBinder arg0, int arg1, String arg2, String arg2_5, WorkSource arg3, String arg4)
48            throws RemoteException {
49        // pass for now.
50    }
51
52    @Override
53    public void acquireWakeLockWithUid(IBinder arg0, int arg1, String arg2, String arg2_5, int arg3)
54            throws RemoteException {
55        // pass for now.
56    }
57
58    @Override
59    public void powerHint(int hintId, int data) {
60        // pass for now.
61    }
62
63    @Override
64    public void crash(String arg0) throws RemoteException {
65        // pass for now.
66    }
67
68    @Override
69    public void goToSleep(long arg0, int arg1, int arg2) throws RemoteException {
70        // pass for now.
71    }
72
73    @Override
74    public void nap(long arg0) throws RemoteException {
75        // pass for now.
76    }
77
78    @Override
79    public void reboot(boolean confirm, String reason, boolean wait) {
80        // pass for now.
81    }
82
83    @Override
84    public void shutdown(boolean confirm, boolean wait) {
85        // pass for now.
86    }
87
88    @Override
89    public void releaseWakeLock(IBinder arg0, int arg1) throws RemoteException {
90        // pass for now.
91    }
92
93    @Override
94    public void updateWakeLockUids(IBinder arg0, int[] arg1) throws RemoteException {
95        // pass for now.
96    }
97
98    @Override
99    public void setAttentionLight(boolean arg0, int arg1) throws RemoteException {
100        // pass for now.
101    }
102
103    @Override
104    public void setTemporaryScreenAutoBrightnessAdjustmentSettingOverride(float arg0) throws RemoteException {
105        // pass for now.
106    }
107
108    @Override
109    public void setTemporaryScreenBrightnessSettingOverride(int arg0) throws RemoteException {
110        // pass for now.
111    }
112
113    @Override
114    public void setMaximumScreenOffTimeoutFromDeviceAdmin(int arg0) throws RemoteException {
115        // pass for now.
116    }
117
118    @Override
119    public void setStayOnSetting(int arg0) throws RemoteException {
120        // pass for now.
121    }
122
123    @Override
124    public void updateWakeLockWorkSource(IBinder arg0, WorkSource arg1, String arg2) throws RemoteException {
125        // pass for now.
126    }
127
128    @Override
129    public boolean isWakeLockLevelSupported(int level) throws RemoteException {
130        // pass for now.
131        return true;
132    }
133
134    @Override
135    public void userActivity(long time, int event, int flags) throws RemoteException {
136        // pass for now.
137    }
138
139    @Override
140    public void wakeUp(long time) throws RemoteException {
141        // pass for now.
142    }
143}
144