Skip to content

Commit 5e3dcf7

Browse files
Jeff BrownAndroid (Google) Code Review
authored andcommitted
Merge "Remove clearUserActivityTimeout()." into jb-mr1-dev
2 parents c56e560 + edce6a7 commit 5e3dcf7

File tree

3 files changed

+0
-12
lines changed

3 files changed

+0
-12
lines changed

core/java/android/os/IPowerManager.aidl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ interface IPowerManager
4040
void reboot(String reason);
4141
void crash(String message);
4242

43-
void clearUserActivityTimeout(long now, long timeout);
4443
void setPokeLock(int pokey, IBinder lock, String tag);
4544
void setStayOnSetting(int val);
4645
void setMaximumScreenOffTimeoutFromDeviceAdmin(int timeMs);

services/java/com/android/server/power/PowerManagerService.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1573,12 +1573,6 @@ public void run() {
15731573
}
15741574
}
15751575

1576-
@Override // Binder call
1577-
public void clearUserActivityTimeout(long now, long timeout) {
1578-
// TODO Auto-generated method stub
1579-
// Only used by phone app, delete this
1580-
}
1581-
15821576
@Override // Binder call
15831577
public void setPokeLock(int pokey, IBinder lock, String tag) {
15841578
// TODO Auto-generated method stub

tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/BridgePowerManager.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,6 @@ public void acquireWakeLock(IBinder arg0, int arg1, String arg2, WorkSource arg3
4444
// pass for now.
4545
}
4646

47-
@Override
48-
public void clearUserActivityTimeout(long arg0, long arg1) throws RemoteException {
49-
// pass for now.
50-
}
51-
5247
@Override
5348
public void crash(String arg0) throws RemoteException {
5449
// pass for now.

0 commit comments

Comments
 (0)