org.chromium.chrome.browser.signin.AccountSigninActivity Java Examples
The following examples show how to use
org.chromium.chrome.browser.signin.AccountSigninActivity.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: SignInPreference.java From 365browser with Apache License 2.0 | 5 votes |
/** * Updates the title, summary, and image based on the current sign-in state. */ private void update() { String accountName = ChromeSigninController.get().getSignedInAccountName(); if (SigninManager.get(getContext()).isSigninDisabledByPolicy()) { setupSigninDisabled(); mShowingPromo = false; } else if (accountName == null) { setupNotSignedIn(); if (!mShowingPromo) { // This user action should be recorded when message with sign-in prompt is shown RecordUserAction.record("Signin_Impression_FromSettings"); } mShowingPromo = true; } else { setupSignedIn(accountName); mShowingPromo = false; } setOnPreferenceClickListener(new OnPreferenceClickListener() { @Override public boolean onPreferenceClick(Preference preference) { return AccountSigninActivity.startIfAllowed( getContext(), SigninAccessPoint.SETTINGS); } }); }
Example #2
Source File: StatusListItem.java From delion with Apache License 2.0 | 4 votes |
@Override protected void performAction(Context context) { AccountSigninActivity.startIfAllowed(context, SigninAccessPoint.NTP_LINK); }
Example #3
Source File: SignInPreference.java From delion with Apache License 2.0 | 4 votes |
/** * Updates the title, summary, and image based on the current sign-in state. */ private void update() { String title; String summary; String fragment; Account account = ChromeSigninController.get(getContext()).getSignedInUser(); if (account == null) { title = getContext().getString(R.string.sign_in_to_chrome); summary = getContext().getString(R.string.sign_in_to_chrome_summary); fragment = null; } else { summary = SyncPreference.getSyncStatusSummary(getContext()); fragment = AccountManagementFragment.class.getName(); title = AccountManagementFragment.getCachedUserName(account.name); if (title == null) { final Profile profile = Profile.getLastUsedProfile(); String cachedName = ProfileDownloader.getCachedFullName(profile); Bitmap cachedBitmap = ProfileDownloader.getCachedAvatar(profile); if (TextUtils.isEmpty(cachedName) || cachedBitmap == null) { AccountManagementFragment.startFetchingAccountInformation( getContext(), profile, account.name); } title = TextUtils.isEmpty(cachedName) ? account.name : cachedName; } } setTitle(title); setSummary(summary); setFragment(fragment); updateSyncStatusIcon(); ChromeSigninController signinController = ChromeSigninController.get(getContext()); boolean enabled = signinController.isSignedIn() || SigninManager.get(getContext()).isSignInAllowed(); if (mViewEnabled != enabled) { mViewEnabled = enabled; notifyChanged(); } if (!enabled) setFragment(null); if (SigninManager.get(getContext()).isSigninDisabledByPolicy()) { setIcon(ManagedPreferencesUtils.getManagedByEnterpriseIconId()); } else { Resources resources = getContext().getResources(); Bitmap bitmap = AccountManagementFragment.getUserPicture( signinController.getSignedInAccountName(), resources); setIcon(new BitmapDrawable(resources, bitmap)); } setOnPreferenceClickListener(new OnPreferenceClickListener() { @Override public boolean onPreferenceClick(Preference preference) { if (!AccountSigninActivity.startIfAllowed( getContext(), SigninAccessPoint.SETTINGS)) { return false; } setEnabled(false); return true; } }); }
Example #4
Source File: SignInPromo.java From AndroidChromium with Apache License 2.0 | 4 votes |
@Override public void performAction(Context context) { AccountSigninActivity.startIfAllowed(context, SigninAccessPoint.NTP_CONTENT_SUGGESTIONS); }
Example #5
Source File: ChromeBlimpClientContextDelegate.java From AndroidChromium with Apache License 2.0 | 4 votes |
@Override public void startUserSignInFlow(Context context) { // TODO(xingliu): Figure out if Blimp should have its own SigninAccessPoint. AccountSigninActivity.startAccountSigninActivity(context, SigninAccessPoint.SETTINGS); }
Example #6
Source File: SignInPreference.java From AndroidChromium with Apache License 2.0 | 4 votes |
/** * Updates the title, summary, and image based on the current sign-in state. */ private void update() { String title; String summary; String fragment; Account account = ChromeSigninController.get(getContext()).getSignedInUser(); if (account == null) { title = getContext().getString(R.string.sign_in_to_chrome); summary = getContext().getString(R.string.sign_in_to_chrome_summary); fragment = null; } else { summary = SyncPreference.getSyncStatusSummary(getContext()); fragment = AccountManagementFragment.class.getName(); title = AccountManagementFragment.getCachedUserName(account.name); if (title == null) { final Profile profile = Profile.getLastUsedProfile(); String cachedName = ProfileDownloader.getCachedFullName(profile); Bitmap cachedBitmap = ProfileDownloader.getCachedAvatar(profile); if (TextUtils.isEmpty(cachedName) || cachedBitmap == null) { AccountManagementFragment.startFetchingAccountInformation( getContext(), profile, account.name); } title = TextUtils.isEmpty(cachedName) ? account.name : cachedName; } } setTitle(title); setSummary(summary); setFragment(fragment); updateSyncStatusIcon(); ChromeSigninController signinController = ChromeSigninController.get(getContext()); boolean enabled = signinController.isSignedIn() || SigninManager.get(getContext()).isSignInAllowed(); if (mViewEnabled != enabled) { mViewEnabled = enabled; notifyChanged(); } if (!enabled) setFragment(null); if (SigninManager.get(getContext()).isSigninDisabledByPolicy()) { setIcon(ManagedPreferencesUtils.getManagedByEnterpriseIconId()); } else { Resources resources = getContext().getResources(); Bitmap bitmap = AccountManagementFragment.getUserPicture( signinController.getSignedInAccountName(), resources); setIcon(new BitmapDrawable(resources, bitmap)); } setOnPreferenceClickListener(new OnPreferenceClickListener() { @Override public boolean onPreferenceClick(Preference preference) { if (!AccountSigninActivity.startIfAllowed( getContext(), SigninAccessPoint.SETTINGS)) { return false; } setEnabled(false); return true; } }); if (account == null && enabled) { RecordUserAction.record("Signin_Impression_FromSettings"); } }
Example #7
Source File: SignInPromo.java From 365browser with Apache License 2.0 | 4 votes |
@Override public void performAction(Context context) { AccountSigninActivity.startIfAllowed(context, SigninAccessPoint.NTP_CONTENT_SUGGESTIONS); }