diff options
author | Matthew Xie <mattx@google.com> | 2012-06-29 16:57:31 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2012-07-16 21:29:12 -0700 |
commit | 9631314e3d28b6e96ef0b7cc777f1a7747a0ac39 (patch) | |
tree | 382904644d26733e0cafd295924397e81198a634 /services/java/com/android/server/SystemServer.java | |
parent | 5a1195fd5faf40428bc98e5bc24d09edbf3c3b6c (diff) | |
download | frameworks_base-9631314e3d28b6e96ef0b7cc777f1a7747a0ac39.zip frameworks_base-9631314e3d28b6e96ef0b7cc777f1a7747a0ac39.tar.gz frameworks_base-9631314e3d28b6e96ef0b7cc777f1a7747a0ac39.tar.bz2 |
Fix merge error, put in tmp workaround for input manager.
Fix merge error, missing enableNoAutoConnect api.
Remove bluetoothF from inputManageF.systemReady call as tmp workaround.
Recover shutdownRadios(MAX_RADIO_WAIT_TIME) call in ShutdownThread
Change-Id: Ice2b5c54267755bdbf56c742feabbb8709b92570
Diffstat (limited to 'services/java/com/android/server/SystemServer.java')
-rw-r--r-- | services/java/com/android/server/SystemServer.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/services/java/com/android/server/SystemServer.java b/services/java/com/android/server/SystemServer.java index f4a5f5b..2185456 100644 --- a/services/java/com/android/server/SystemServer.java +++ b/services/java/com/android/server/SystemServer.java @@ -731,7 +731,6 @@ class ServerThread extends Thread { final StatusBarManagerService statusBarF = statusBar; final DreamManagerService dreamyF = dreamy; final InputManagerService inputManagerF = inputManager; - final BluetoothService bluetoothF = bluetooth; // We now tell the activity manager it is okay to run third party // code. It will call back into us once it has gotten to the state @@ -844,7 +843,8 @@ class ServerThread extends Thread { reportWtf("making DreamManagerService ready", e); } try { - if (inputManagerF != null) inputManagerF.systemReady(bluetoothF); + // TODO(BT) Pass parameter to input manager + if (inputManagerF != null) inputManagerF.systemReady(); } catch (Throwable e) { reportWtf("making InputManagerService ready", e); } |