diff options
author | Joe Onorato <joeo@android.com> | 2010-04-08 18:37:10 -0500 |
---|---|---|
committer | Joe Onorato <joeo@android.com> | 2010-06-02 14:48:40 -0700 |
commit | 25f95f92005594f2ef094001c54cb4c39eec3ade (patch) | |
tree | 5d203a4356ec39d79fda29d96780b5c3d4d92bae /services/java/com/android/server | |
parent | 2314aab5064ce09f09270e52fa12a38d07464278 (diff) | |
download | frameworks_base-25f95f92005594f2ef094001c54cb4c39eec3ade.zip frameworks_base-25f95f92005594f2ef094001c54cb4c39eec3ade.tar.gz frameworks_base-25f95f92005594f2ef094001c54cb4c39eec3ade.tar.bz2 |
Rename IStatusBar to IStatusBarService.
Change-Id: Icfec2a830f037b21f6afaa796bf49da610567e7b
Diffstat (limited to 'services/java/com/android/server')
-rw-r--r-- | services/java/com/android/server/status/StatusBarService.java | 8 |
1 files changed, 4 insertions, 4 deletions
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. * <p> @@ -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(); |