[go: nahoru, domu]

blob: 564cbbb6b34f73c19ad6cfa4ae05ac321e381014 [file] [log] [blame]
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/signin/logout_tab_helper.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/signin/identity_manager_factory.h"
#include "components/signin/public/base/signin_metrics.h"
#include "components/signin/public/identity_manager/accounts_mutator.h"
#include "components/signin/public/identity_manager/identity_manager.h"
#include "content/public/browser/navigation_handle.h"
WEB_CONTENTS_USER_DATA_KEY_IMPL(LogoutTabHelper);
LogoutTabHelper::LogoutTabHelper(content::WebContents* web_contents)
: content::WebContentsObserver(web_contents) {}
LogoutTabHelper::~LogoutTabHelper() = default;
void LogoutTabHelper::DidFinishNavigation(
content::NavigationHandle* navigation_handle) {
// TODO(https://crbug.com/1218946): With MPArch there may be multiple main
// frames. This caller was converted automatically to the primary main frame
// to preserve its semantics. Follow up to confirm correctness.
if (!navigation_handle->IsInPrimaryMainFrame())
return;
if (navigation_handle->IsErrorPage()) {
// Failed to load the logout page, fallback to local signout.
Profile* profile =
Profile::FromBrowserContext(web_contents()->GetBrowserContext());
IdentityManagerFactory::GetForProfile(profile)
->GetAccountsMutator()
->RemoveAllAccounts(signin_metrics::SourceForRefreshTokenOperation::
kLogoutTabHelper_DidFinishNavigation);
}
// Delete this.
web_contents()->RemoveUserData(UserDataKey());
}