blob: d7c843c3f8ae468fc79506a38c22bf5b4b94429a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package com.cyanogenmod.settings.device;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
public class Startup extends BroadcastReceiver {
@Override
public void onReceive(final Context context, final Intent bootintent) {
ColorTuningPreference.restore(context);
Mdnie.restore(context);
TouchKeyBacklightTimeout.restore(context);
Hspa.restore(context);
VolumeBoostPreference.restore(context);
DockAudio.restore(context);
Sanity.check(context);
VibrationPreference.restore(context);
}
}
|