[2]Pass context to StatsUtilsManager for alarms.

Change corresponding to ag/605384

Bug:16553957

Change-Id: I77024957b9497c45296bbbb24ca972b26348a8c3
main
Jatin Matani 2014-12-01 11:38:52 -08:00
parent bc4ae6bdc0
commit 2b69244555
2 changed files with 4 additions and 4 deletions

View File

@ -36,7 +36,7 @@ public class StatsUtilsManager {
public void onCreate(final Context context) { public void onCreate(final Context context) {
} }
public void onLoadSettings(final SettingsValues settingsValues) { public void onLoadSettings(final Context context, final SettingsValues settingsValues) {
} }
public void onStartInputView() { public void onStartInputView() {
@ -45,6 +45,6 @@ public class StatsUtilsManager {
public void onFinishInputView() { public void onFinishInputView() {
} }
public void onDestroy() { public void onDestroy(final Context context) {
} }
} }

View File

@ -638,8 +638,8 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
mDictionaryFacilitator.updateEnabledSubtypes(mRichImm.getMyEnabledInputMethodSubtypeList( mDictionaryFacilitator.updateEnabledSubtypes(mRichImm.getMyEnabledInputMethodSubtypeList(
true /* allowsImplicitlySelectedSubtypes */)); true /* allowsImplicitlySelectedSubtypes */));
refreshPersonalizationDictionarySession(currentSettingsValues); refreshPersonalizationDictionarySession(currentSettingsValues);
mStatsUtilsManager.onLoadSettings(currentSettingsValues);
resetDictionaryFacilitatorIfNecessary(); resetDictionaryFacilitatorIfNecessary();
mStatsUtilsManager.onLoadSettings(this /* context */, currentSettingsValues);
} }
private void refreshPersonalizationDictionarySession( private void refreshPersonalizationDictionarySession(
@ -739,7 +739,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
unregisterReceiver(mRingerModeChangeReceiver); unregisterReceiver(mRingerModeChangeReceiver);
unregisterReceiver(mDictionaryPackInstallReceiver); unregisterReceiver(mDictionaryPackInstallReceiver);
unregisterReceiver(mDictionaryDumpBroadcastReceiver); unregisterReceiver(mDictionaryDumpBroadcastReceiver);
mStatsUtilsManager.onDestroy(); mStatsUtilsManager.onDestroy(this /* context */);
DictionaryDecayBroadcastReciever.cancelIntervalAlarmForDictionaryDecaying(this); DictionaryDecayBroadcastReciever.cancelIntervalAlarmForDictionaryDecaying(this);
super.onDestroy(); super.onDestroy();
} }