Merge "MediaSessionLegacyHelper uses global Application context" into lmp-mr1-dev

This commit is contained in:
Oliver Woodman
2014-12-19 11:37:01 +00:00
committed by Android (Google) Code Review

View File

@@ -69,12 +69,9 @@ public class MediaSessionLegacyHelper {
}
public static MediaSessionLegacyHelper getHelper(Context context) {
if (DEBUG) {
Log.d(TAG, "Attempting to get helper with context " + context);
}
synchronized (sLock) {
if (sInstance == null) {
sInstance = new MediaSessionLegacyHelper(context);
sInstance = new MediaSessionLegacyHelper(context.getApplicationContext());
}
}
return sInstance;