Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LatinIME
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
keyboard
LatinIME
Commits
bb277317
Commit
bb277317
authored
10 years ago
by
Jatin Matani
Browse files
Options
Downloads
Patches
Plain Diff
Check for accounts when enabling sync features.
Bug:19895917 Change-Id: I2f2f535f5a5c17c5642a5c44d2fd20a520ccfd73
parent
13271bfd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
java/src/com/android/inputmethod/latin/settings/AccountsSettingsFragment.java
+9
-2
9 additions, 2 deletions
.../inputmethod/latin/settings/AccountsSettingsFragment.java
with
9 additions
and
2 deletions
java/src/com/android/inputmethod/latin/settings/AccountsSettingsFragment.java
+
9
−
2
View file @
bb277317
...
...
@@ -118,11 +118,17 @@ public final class AccountsSettingsFragment extends SubScreenFragment {
if
(!
ProductionFlags
.
ENABLE_USER_HISTORY_DICTIONARY_SYNC
)
{
removeSyncPreferences
();
}
else
{
// Temporarily disable the preferences till we can
// check that we don't have a work profile.
disableSyncPreferences
();
new
ManagedProfileCheckerTask
(
this
).
execute
();
}
}
/**
* Task to check work profile. If found, it removes the sync prefs. If not,
* it enables them.
*/
private
static
class
ManagedProfileCheckerTask
extends
AsyncTask
<
Void
,
Void
,
Void
>
{
private
final
AccountsSettingsFragment
mFragment
;
...
...
@@ -132,10 +138,11 @@ public final class AccountsSettingsFragment extends SubScreenFragment {
@Override
protected
Void
doInBackground
(
Void
...
params
)
{
if
(
ManagedProfileUtils
.
getInstance
().
has
Managed
WorkProfile
(
mFragment
.
getActivity
()))
{
if
(
ManagedProfileUtils
.
getInstance
().
hasWorkProfile
(
mFragment
.
getActivity
()))
{
mFragment
.
removeSyncPreferences
();
}
else
{
mFragment
.
enableSyncPreferences
();
mFragment
.
refreshAccountAndDependentPreferences
(
mFragment
.
getSignedInAccountName
());
}
return
null
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment