From 25f95f92005594f2ef094001c54cb4c39eec3ade Mon Sep 17 00:00:00 2001 From: Joe Onorato Date: Thu, 8 Apr 2010 18:37:10 -0500 Subject: Rename IStatusBar to IStatusBarService. Change-Id: Icfec2a830f037b21f6afaa796bf49da610567e7b --- services/java/com/android/server/status/StatusBarService.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'services') diff --git a/services/java/com/android/server/status/StatusBarService.java b/services/java/com/android/server/status/StatusBarService.java index 1907c80..b4cab2c 100644 --- a/services/java/com/android/server/status/StatusBarService.java +++ b/services/java/com/android/server/status/StatusBarService.java @@ -21,7 +21,7 @@ import com.android.internal.util.CharSequences; import android.app.ActivityManagerNative; import android.app.Dialog; -import android.app.IStatusBar; +import android.app.IStatusBarService; import android.app.IPoo; import android.app.PendingIntent; import android.app.StatusBarManager; @@ -76,7 +76,7 @@ import java.util.Set; * are called from other classes just post a message, and everything else is batched * and coalesced into a series of calls to methods that all start with "perform." * There are two reasons for this. The first is that some of the methods (activate/deactivate) - * are on IStatusBar, so they're called from the thread pool and they need to make their + * are on IStatusBarService, so they're called from the thread pool and they need to make their * way onto the UI thread. The second is that the message queue is stopped while animations * are happening in order to make for smoother transitions. *

@@ -84,7 +84,7 @@ import java.util.Set; * separately throughout the code, although they both use the same key, which is assigned * when they are created. */ -public class StatusBarService extends IStatusBar.Stub +public class StatusBarService extends IStatusBarService.Stub { static final String TAG = "StatusBar"; static final boolean SPEW = false; @@ -360,7 +360,7 @@ public class StatusBarService extends IStatusBar.Stub } // ================================================================================ - // From IStatusBar + // From IStatusBarService // ================================================================================ public void activate() { enforceExpandStatusBar(); -- cgit v1.1