resolved conflicts for merge of 368fdba4 to master
Change-Id: I42b7b433c86a71a5da5db67109f056a280077c9d
This commit is contained in:
@@ -699,7 +699,6 @@ public class StatusBarPolicy {
|
||||
NetworkInfo info = (NetworkInfo)(intent.getParcelableExtra(
|
||||
ConnectivityManager.EXTRA_NETWORK_INFO));
|
||||
int connectionStatus = intent.getIntExtra(ConnectivityManager.EXTRA_INET_CONDITION, 0);
|
||||
Slog.d(TAG, "got CONNECTIVITY_ACTION - info=" + info + ", status = " + connectionStatus);
|
||||
|
||||
int inetCondition = (connectionStatus > INET_CONDITION_THRESHOLD ? 1 : 0);
|
||||
|
||||
|
||||
@@ -44,6 +44,7 @@ import com.android.systemui.R;
|
||||
|
||||
public abstract class StatusBarService extends Service implements CommandQueue.Callbacks {
|
||||
static final String TAG = "StatusBarService";
|
||||
private static final boolean SPEW = false;
|
||||
|
||||
protected CommandQueue mCommandQueue;
|
||||
protected IStatusBarService mBarService;
|
||||
@@ -121,11 +122,12 @@ public abstract class StatusBarService extends Service implements CommandQueue.C
|
||||
// TODO lp.windowAnimations = R.style.Animation_StatusBar;
|
||||
WindowManagerImpl.getDefault().addView(sb, lp);
|
||||
|
||||
Slog.d(TAG, "Added status bar view: gravity=0x" + Integer.toHexString(lp.gravity)
|
||||
+ " icons=" + iconList.size()
|
||||
+ " lights=" + (switches[0]?"on":"off")
|
||||
+ " menu=" + (switches[1]?"visible":"invisible")
|
||||
);
|
||||
if (SPEW) {
|
||||
Slog.d(TAG, "Added status bar view: gravity=0x" + Integer.toHexString(lp.gravity)
|
||||
+ " icons=" + iconList.size()
|
||||
+ " lights=" + (switches[0]?"on":"off")
|
||||
+ " menu=" + (switches[1]?"visible":"invisible")
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user