resolve merge conflicts of 81758edffa to nyc-mr2-dev-plus-aosp

Change-Id: Ie5f768b3986b1a2847503ed0871dc1dc79007d88
This commit is contained in:
Alexey Polyudov
2017-02-02 11:11:29 -08:00
2 changed files with 16 additions and 2 deletions

View File

@@ -1171,7 +1171,7 @@ public class RadioInfo extends Activity {
void setImsConfigProvisionedState(int configItem, boolean state) {
if (phone != null && mImsManager != null) {
QueuedWork.singleThreadExecutor().submit(new Runnable() {
QueuedWork.queue(new Runnable() {
public void run() {
try {
mImsManager.getConfigInterface().setProvisionedValue(
@@ -1181,7 +1181,7 @@ public class RadioInfo extends Activity {
Log.e(TAG, "setImsConfigProvisioned() exception:", e);
}
}
});
}, false);
}
}

View File

@@ -148,6 +148,20 @@ final class LocalBluetoothPreferences {
editor.apply();
}
static void persistDiscoveringTimestamp(final Context context) {
// Load the shared preferences and edit it on a background
// thread (but serialized!).
QueuedWork.queue(new Runnable() {
public void run() {
SharedPreferences.Editor editor = getSharedPreferences(context).edit();
editor.putLong(
KEY_DISCOVERING_TIMESTAMP,
System.currentTimeMillis());
editor.apply();
}
}, false);
}
static boolean hasDockAutoConnectSetting(Context context, String addr) {
return getSharedPreferences(context).contains(KEY_DOCK_AUTO_CONNECT + addr);
}