BridgePowerManager.java revision a421f6c0ba8c354e2a81830e6402654bbf732780
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(int arg0, IBinder arg1, String arg2, WorkSource arg3)
43            throws RemoteException {
44        // pass for now.
45    }
46
47    @Override
48    public void clearUserActivityTimeout(long arg0, long arg1) throws RemoteException {
49        // pass for now.
50    }
51
52    @Override
53    public void crash(String arg0) throws RemoteException {
54        // pass for now.
55    }
56
57    @Override
58    public int getSupportedWakeLockFlags() throws RemoteException {
59        // pass for now.
60        return 0;
61    }
62
63    @Override
64    public void goToSleep(long arg0) throws RemoteException {
65        // pass for now.
66    }
67
68    @Override
69    public void goToSleepWithReason(long arg0, int arg1) throws RemoteException {
70        // pass for now.
71    }
72
73    @Override
74    public void preventScreenOn(boolean arg0) throws RemoteException {
75        // pass for now.
76    }
77
78    @Override
79    public void reboot(String arg0) throws RemoteException {
80        // pass for now.
81    }
82
83    @Override
84    public void releaseWakeLock(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 setAutoBrightnessAdjustment(float arg0) throws RemoteException {
95        // pass for now.
96    }
97
98    @Override
99    public void setBacklightBrightness(int arg0) throws RemoteException {
100        // pass for now.
101    }
102
103    @Override
104    public void setMaximumScreenOffTimeount(int arg0) throws RemoteException {
105        // pass for now.
106    }
107
108    @Override
109    public void setPokeLock(int arg0, IBinder arg1, String arg2) throws RemoteException {
110        // pass for now.
111    }
112
113    @Override
114    public void setStayOnSetting(int arg0) throws RemoteException {
115        // pass for now.
116    }
117
118    @Override
119    public void updateWakeLockWorkSource(IBinder arg0, WorkSource arg1) throws RemoteException {
120        // pass for now.
121    }
122
123    @Override
124    public void userActivity(long arg0, boolean arg1) throws RemoteException {
125        // pass for now.
126    }
127
128    @Override
129    public void userActivityWithForce(long arg0, boolean arg1, boolean arg2) throws RemoteException {
130        // pass for now.
131    }
132}
133