Loading packages/SystemUI/src/com/android/systemui/statusbar/CommandQueue.java +0 −2 Original line number Original line Diff line number Diff line Loading @@ -19,7 +19,6 @@ package com.android.systemui.statusbar; import android.os.Handler; import android.os.Handler; import android.os.IBinder; import android.os.IBinder; import android.os.Message; import android.os.Message; import android.util.Slog; import com.android.internal.statusbar.IStatusBar; import com.android.internal.statusbar.IStatusBar; import com.android.internal.statusbar.StatusBarIcon; import com.android.internal.statusbar.StatusBarIcon; Loading Loading @@ -147,7 +146,6 @@ class CommandQueue extends IStatusBar.Stub { private final class H extends Handler { private final class H extends Handler { public void handleMessage(Message msg) { public void handleMessage(Message msg) { final int what = msg.what & MSG_MASK; final int what = msg.what & MSG_MASK; Slog.d(TAG, "handleMessage what=0x" + Integer.toHexString(what) + " arg1=" + msg.arg1); switch (what) { switch (what) { case MSG_ICON: { case MSG_ICON: { final int index = msg.what & INDEX_MASK; final int index = msg.what & INDEX_MASK; Loading packages/SystemUI/src/com/android/systemui/statusbar/StatusBarService.java +0 −1 Original line number Original line Diff line number Diff line Loading @@ -82,7 +82,6 @@ public abstract class StatusBarService extends Service implements CommandQueue.C // Set up the initial notification state // Set up the initial notification state N = notificationKeys.size(); N = notificationKeys.size(); Slog.d(TAG, "installing " + N + " initial notifications"); if (N == notifications.size()) { if (N == notifications.size()) { for (int i=0; i<N; i++) { for (int i=0; i<N; i++) { addNotification(notificationKeys.get(i), notifications.get(i)); addNotification(notificationKeys.get(i), notifications.get(i)); Loading services/java/com/android/server/status/StatusBarManagerService.java +1 −2 Original line number Original line Diff line number Diff line Loading @@ -272,7 +272,7 @@ public class StatusBarManagerService extends IStatusBarService.Stub * the status bar is visible or not. * the status bar is visible or not. */ */ public void visibilityChanged(boolean visible) { public void visibilityChanged(boolean visible) { Slog.d(TAG, "visibilityChanged visible=" + visible); //Slog.d(TAG, "visibilityChanged visible=" + visible); } } public void onNotificationClick(String pkg, String tag, int id) { public void onNotificationClick(String pkg, String tag, int id) { Loading @@ -288,7 +288,6 @@ public class StatusBarManagerService extends IStatusBarService.Stub // ================================================================================ // ================================================================================ public IBinder addNotification(StatusBarNotification notification) { public IBinder addNotification(StatusBarNotification notification) { synchronized (mNotifications) { synchronized (mNotifications) { Slog.d(TAG, "addNotification notification=" + notification); IBinder key = new Binder(); IBinder key = new Binder(); mNotifications.put(key, notification); mNotifications.put(key, notification); if (mBar != null) { if (mBar != null) { Loading Loading
packages/SystemUI/src/com/android/systemui/statusbar/CommandQueue.java +0 −2 Original line number Original line Diff line number Diff line Loading @@ -19,7 +19,6 @@ package com.android.systemui.statusbar; import android.os.Handler; import android.os.Handler; import android.os.IBinder; import android.os.IBinder; import android.os.Message; import android.os.Message; import android.util.Slog; import com.android.internal.statusbar.IStatusBar; import com.android.internal.statusbar.IStatusBar; import com.android.internal.statusbar.StatusBarIcon; import com.android.internal.statusbar.StatusBarIcon; Loading Loading @@ -147,7 +146,6 @@ class CommandQueue extends IStatusBar.Stub { private final class H extends Handler { private final class H extends Handler { public void handleMessage(Message msg) { public void handleMessage(Message msg) { final int what = msg.what & MSG_MASK; final int what = msg.what & MSG_MASK; Slog.d(TAG, "handleMessage what=0x" + Integer.toHexString(what) + " arg1=" + msg.arg1); switch (what) { switch (what) { case MSG_ICON: { case MSG_ICON: { final int index = msg.what & INDEX_MASK; final int index = msg.what & INDEX_MASK; Loading
packages/SystemUI/src/com/android/systemui/statusbar/StatusBarService.java +0 −1 Original line number Original line Diff line number Diff line Loading @@ -82,7 +82,6 @@ public abstract class StatusBarService extends Service implements CommandQueue.C // Set up the initial notification state // Set up the initial notification state N = notificationKeys.size(); N = notificationKeys.size(); Slog.d(TAG, "installing " + N + " initial notifications"); if (N == notifications.size()) { if (N == notifications.size()) { for (int i=0; i<N; i++) { for (int i=0; i<N; i++) { addNotification(notificationKeys.get(i), notifications.get(i)); addNotification(notificationKeys.get(i), notifications.get(i)); Loading
services/java/com/android/server/status/StatusBarManagerService.java +1 −2 Original line number Original line Diff line number Diff line Loading @@ -272,7 +272,7 @@ public class StatusBarManagerService extends IStatusBarService.Stub * the status bar is visible or not. * the status bar is visible or not. */ */ public void visibilityChanged(boolean visible) { public void visibilityChanged(boolean visible) { Slog.d(TAG, "visibilityChanged visible=" + visible); //Slog.d(TAG, "visibilityChanged visible=" + visible); } } public void onNotificationClick(String pkg, String tag, int id) { public void onNotificationClick(String pkg, String tag, int id) { Loading @@ -288,7 +288,6 @@ public class StatusBarManagerService extends IStatusBarService.Stub // ================================================================================ // ================================================================================ public IBinder addNotification(StatusBarNotification notification) { public IBinder addNotification(StatusBarNotification notification) { synchronized (mNotifications) { synchronized (mNotifications) { Slog.d(TAG, "addNotification notification=" + notification); IBinder key = new Binder(); IBinder key = new Binder(); mNotifications.put(key, notification); mNotifications.put(key, notification); if (mBar != null) { if (mBar != null) { Loading