First pass at splitting the status bar for the different devices.

Change-Id: I2f568df92f88dfe8de18d24dd004239f52761aa6
This commit is contained in:
Joe Onorato
2010-04-08 16:41:23 -05:00
parent c87d5849f2
commit 2314aab506
16 changed files with 562 additions and 1 deletions

View File

@@ -464,6 +464,7 @@ class ServerThread extends Thread {
}
// These are needed to propagate to the runnable below.
final StatusBarService statusBarF = statusBar;
final BatteryService batteryF = battery;
final ConnectivityService connectivityF = connectivity;
final DockObserver dockF = dock;
@@ -485,6 +486,7 @@ class ServerThread extends Thread {
public void run() {
Slog.i(TAG, "Making services ready");
if (statusBarF != null) statusBarF.systemReady2();
if (batteryF != null) batteryF.systemReady();
if (connectivityF != null) connectivityF.systemReady();
if (dockF != null) dockF.systemReady();