Loading java-overridable/src/com/android/inputmethod/latin/define/ProductionFlags.java +3 −2 Original line number Diff line number Diff line Loading @@ -45,9 +45,10 @@ public final class ProductionFlags { public static final boolean ENABLE_ACCOUNT_SIGN_IN = false; /** * When {@code true}, personal dictionary sync feature is ready to be enabled. * When {@code true}, user history dictionary sync feature is ready to be enabled. */ public static final boolean ENABLE_PERSONAL_DICTIONARY_SYNC = ENABLE_ACCOUNT_SIGN_IN && false; public static final boolean ENABLE_USER_HISTORY_DICTIONARY_SYNC = ENABLE_ACCOUNT_SIGN_IN && false; /** * When {@code true}, the IME maintains per account {@link UserHistoryDictionary}. Loading java/src/com/android/inputmethod/latin/settings/AccountsSettingsFragment.java +3 −3 Original line number Diff line number Diff line Loading @@ -84,7 +84,7 @@ public final class AccountsSettingsFragment extends SubScreenFragment { removePreference(PREF_SYNC_NOW); removePreference(PREF_CLEAR_SYNC_DATA); } if (!ProductionFlags.ENABLE_PERSONAL_DICTIONARY_SYNC) { if (!ProductionFlags.ENABLE_USER_HISTORY_DICTIONARY_SYNC) { removePreference(PREF_ENABLE_CLOUD_SYNC); removePreference(PREF_SYNC_NOW); removePreference(PREF_CLEAR_SYNC_DATA); Loading Loading @@ -154,7 +154,7 @@ public final class AccountsSettingsFragment extends SubScreenFragment { * Enables the Sync preference UI and updates its summary. */ private void enableSyncPreference() { if (!ProductionFlags.ENABLE_PERSONAL_DICTIONARY_SYNC) { if (!ProductionFlags.ENABLE_USER_HISTORY_DICTIONARY_SYNC) { return; } Loading @@ -168,7 +168,7 @@ public final class AccountsSettingsFragment extends SubScreenFragment { * the fact that an account needs to be selected for sync. */ private void disableSyncPreference() { if (!ProductionFlags.ENABLE_PERSONAL_DICTIONARY_SYNC) { if (!ProductionFlags.ENABLE_USER_HISTORY_DICTIONARY_SYNC) { return; } Loading Loading
java-overridable/src/com/android/inputmethod/latin/define/ProductionFlags.java +3 −2 Original line number Diff line number Diff line Loading @@ -45,9 +45,10 @@ public final class ProductionFlags { public static final boolean ENABLE_ACCOUNT_SIGN_IN = false; /** * When {@code true}, personal dictionary sync feature is ready to be enabled. * When {@code true}, user history dictionary sync feature is ready to be enabled. */ public static final boolean ENABLE_PERSONAL_DICTIONARY_SYNC = ENABLE_ACCOUNT_SIGN_IN && false; public static final boolean ENABLE_USER_HISTORY_DICTIONARY_SYNC = ENABLE_ACCOUNT_SIGN_IN && false; /** * When {@code true}, the IME maintains per account {@link UserHistoryDictionary}. Loading
java/src/com/android/inputmethod/latin/settings/AccountsSettingsFragment.java +3 −3 Original line number Diff line number Diff line Loading @@ -84,7 +84,7 @@ public final class AccountsSettingsFragment extends SubScreenFragment { removePreference(PREF_SYNC_NOW); removePreference(PREF_CLEAR_SYNC_DATA); } if (!ProductionFlags.ENABLE_PERSONAL_DICTIONARY_SYNC) { if (!ProductionFlags.ENABLE_USER_HISTORY_DICTIONARY_SYNC) { removePreference(PREF_ENABLE_CLOUD_SYNC); removePreference(PREF_SYNC_NOW); removePreference(PREF_CLEAR_SYNC_DATA); Loading Loading @@ -154,7 +154,7 @@ public final class AccountsSettingsFragment extends SubScreenFragment { * Enables the Sync preference UI and updates its summary. */ private void enableSyncPreference() { if (!ProductionFlags.ENABLE_PERSONAL_DICTIONARY_SYNC) { if (!ProductionFlags.ENABLE_USER_HISTORY_DICTIONARY_SYNC) { return; } Loading @@ -168,7 +168,7 @@ public final class AccountsSettingsFragment extends SubScreenFragment { * the fact that an account needs to be selected for sync. */ private void disableSyncPreference() { if (!ProductionFlags.ENABLE_PERSONAL_DICTIONARY_SYNC) { if (!ProductionFlags.ENABLE_USER_HISTORY_DICTIONARY_SYNC) { return; } Loading