| Index: chrome/browser/signin/signin_browsertest.cc
|
| diff --git a/chrome/browser/signin/signin_browsertest.cc b/chrome/browser/signin/signin_browsertest.cc
|
| index c06a083949c72eb5f352d2ad096b4619da227982..45c58849f460ff98ad0425663ff260eee8233496 100644
|
| --- a/chrome/browser/signin/signin_browsertest.cc
|
| +++ b/chrome/browser/signin/signin_browsertest.cc
|
| @@ -18,6 +18,7 @@
|
| #include "chrome/common/url_constants.h"
|
| #include "chrome/test/base/in_process_browser_test.h"
|
| #include "chrome/test/base/ui_test_utils.h"
|
| +#include "components/signin/core/common/profile_management_switches.h"
|
| #include "content/public/browser/notification_service.h"
|
| #include "content/public/browser/notification_types.h"
|
| #include "content/public/browser/render_process_host.h"
|
| @@ -107,6 +108,10 @@ const bool kOneClickSigninEnabled = false;
|
| #define MAYBE_ProcessIsolation ProcessIsolation
|
| #endif
|
| IN_PROC_BROWSER_TEST_F(SigninBrowserTest, MAYBE_ProcessIsolation) {
|
| + // This test is not needed for the webview based sign-in code.
|
| + if (switches::IsEnableWebviewBasedSignin())
|
| + return;
|
| +
|
| SigninClient* signin =
|
| ChromeSigninClientFactory::GetForProfile(browser()->profile());
|
| EXPECT_FALSE(signin->HasSigninProcess());
|
| @@ -156,6 +161,10 @@ IN_PROC_BROWSER_TEST_F(SigninBrowserTest, MAYBE_ProcessIsolation) {
|
| #endif
|
|
|
| IN_PROC_BROWSER_TEST_F(SigninBrowserTest, MAYBE_NotTrustedAfterRedirect) {
|
| + // This test is not needed for the webview based sign-in code.
|
| + if (switches::IsEnableWebviewBasedSignin())
|
| + return;
|
| +
|
| SigninClient* signin =
|
| ChromeSigninClientFactory::GetForProfile(browser()->profile());
|
| EXPECT_FALSE(signin->HasSigninProcess());
|
| @@ -206,6 +215,11 @@ class BackOnNTPCommitObserver : public content::WebContentsObserver {
|
| // and initiates a back navigation between the point of Commit and
|
| // DidStopLoading of the NTP.
|
| IN_PROC_BROWSER_TEST_F(SigninBrowserTest, SigninSkipForNowAndGoBack) {
|
| + // This test is not needed for the webview based sign-in code.
|
| + // OneClickSigninHelper is not used.
|
| + if (switches::IsEnableWebviewBasedSignin())
|
| + return;
|
| +
|
| GURL ntp_url(chrome::kChromeUINewTabURL);
|
| GURL start_url = signin::GetPromoURL(
|
| signin_metrics::SOURCE_START_PAGE, false);
|
|
|