Chromium Code Reviews| Index: chrome/browser/ui/autofill/chrome_autofill_client.cc |
| diff --git a/chrome/browser/ui/autofill/chrome_autofill_client.cc b/chrome/browser/ui/autofill/chrome_autofill_client.cc |
| index a79166311efe32669afdebd5c6642d63c06c0a4f..310f9ceec88f52c78b33d0ba1173acec3203a67a 100644 |
| --- a/chrome/browser/ui/autofill/chrome_autofill_client.cc |
| +++ b/chrome/browser/ui/autofill/chrome_autofill_client.cc |
| @@ -17,9 +17,10 @@ |
| #include "chrome/browser/infobars/infobar_service.h" |
| #include "chrome/browser/password_manager/chrome_password_manager_client.h" |
| #include "chrome/browser/profiles/profile.h" |
| +#include "chrome/browser/profiles/profile_manager.h" |
| #include "chrome/browser/signin/profile_oauth2_token_service_factory.h" |
| #include "chrome/browser/signin/signin_manager_factory.h" |
| -#include "chrome/browser/signin/signin_promo.h" |
| +#include "chrome/browser/signin/signin_promo_util.h" |
| #include "chrome/browser/sync/profile_sync_service_factory.h" |
| #include "chrome/browser/ui/autofill/autofill_popup_controller_impl.h" |
| #include "chrome/browser/ui/autofill/create_card_unmask_prompt_view.h" |
| @@ -59,6 +60,8 @@ |
| #endif |
| #if defined(OS_ANDROID) |
| +#include "base/android/context_utils.h" |
| +#include "chrome/browser/android/signin/signin_promo_util_android.h" |
| #include "components/autofill/core/browser/autofill_save_card_infobar_delegate_mobile.h" |
| #include "components/autofill/core/browser/autofill_save_card_infobar_mobile.h" |
| #include "components/infobars/core/infobar.h" |
| @@ -340,20 +343,31 @@ bool ChromeAutofillClient::IsContextSecure(const GURL& form_origin) { |
| } |
| bool ChromeAutofillClient::ShouldShowSigninPromo() { |
| -#if defined(OS_ANDROID) || defined(OS_IOS) |
| - // TODO(crbug.com/626383): Implement signin promo for Android and iOS by |
| - // changing the logic of StartSigninFlow() below. |
| +#if defined(OS_IOS) |
| + // TODO(crbug.com/626383): Implement signin promo for iOS by changing the |
| + // logic of StartSigninFlow() below. |
| return false; |
| #else |
| - return chrome::FindBrowserWithWebContents(web_contents()) && |
| - signin::ShouldShowPromo( |
| - Profile::FromBrowserContext(web_contents()->GetBrowserContext())); |
| + // Determine if we are in a valid context (on desktop platforms, we could be |
| + // in an app window with no Browser). |
| + bool valid_context = true; |
| +#if !defined(OS_ANDROID) |
| + valid_context = !!chrome::FindBrowserWithWebContents(web_contents()); |
|
Evan Stade
2016/07/15 17:32:22
nit:
#if defined(OS_IOS)
[...]
#elif !defined(O
Mathieu
2016/07/15 19:22:41
Done.
|
| +#endif |
| + |
| + return valid_context && signin::ShouldShowPromo(Profile::FromBrowserContext( |
| + web_contents()->GetBrowserContext())); |
| #endif |
| } |
| void ChromeAutofillClient::StartSigninFlow() { |
| // See ShouldShowSigninPromo. |
| -#if !defined(OS_ANDROID) && !defined(OS_IOS) |
| +#if defined(OS_IOS) |
| + return; |
| +#elif defined(OS_ANDROID) |
| + chrome::android::SigninPromoUtilAndroid::OpenAccountSigninActivityForPromo( |
| + signin_metrics::AccessPoint::ACCESS_POINT_AUTOFILL_DROPDOWN); |
| +#else |
| chrome::FindBrowserWithWebContents(web_contents()) |
| ->window() |
| ->ShowAvatarBubbleFromAvatarButton( |
|
Evan Stade
2016/07/15 17:32:22
do we know that there will be an avatar button?
Mathieu
2016/07/15 19:22:41
This was pointed out by the signin team as the met
|