Don't show supervised user as "already on this device" while they're being imported.
[chromium-blink-merge.git] / ios / chrome / browser / infobars / infobar_manager_impl.cc
bloba3ed407911532d87b1e1ee7e7db35712ab827797
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "ios/chrome/browser/infobars/infobar_manager_impl.h"
7 #include "components/infobars/core/confirm_infobar_delegate.h"
8 #include "components/infobars/core/infobar.h"
9 #include "components/infobars/core/infobar_delegate.h"
10 #include "ios/chrome/browser/infobars/infobar_utils.h"
11 #include "ios/web/public/load_committed_details.h"
12 #include "ios/web/public/navigation_item.h"
13 #include "ios/web/public/navigation_manager.h"
14 #include "ios/web/public/web_state/web_state.h"
15 #include "ui/base/page_transition_types.h"
17 DEFINE_WEB_STATE_USER_DATA_KEY(InfoBarManagerImpl);
19 namespace {
21 infobars::InfoBarDelegate::NavigationDetails
22 NavigationDetailsFromLoadCommittedDetails(
23 const web::LoadCommittedDetails& load_details) {
24 const ui::PageTransition transition = load_details.item->GetTransitionType();
25 infobars::InfoBarDelegate::NavigationDetails navigation_details;
26 navigation_details.is_main_frame = ui::PageTransitionIsMainFrame(transition);
27 navigation_details.is_redirect = ui::PageTransitionIsRedirect(transition);
28 navigation_details.is_reload =
29 ui::PageTransitionCoreTypeIs(transition, ui::PAGE_TRANSITION_RELOAD);
31 // web::LoadCommittedDetails don't store this information, default to false.
32 navigation_details.did_replace_entry = false;
33 navigation_details.entry_id = load_details.item->GetUniqueID();
34 navigation_details.is_navigation_to_different_page =
35 navigation_details.is_main_frame && !load_details.is_in_page;
37 return navigation_details;
40 } // namespace
42 // static
43 web::WebState* InfoBarManagerImpl::WebStateFromInfoBar(
44 infobars::InfoBar* infobar) {
45 if (!infobar || !infobar->owner())
46 return nullptr;
47 return static_cast<InfoBarManagerImpl*>(infobar->owner())->web_state();
50 InfoBarManagerImpl::InfoBarManagerImpl(web::WebState* web_state)
51 : web::WebStateObserver(web_state) {
52 DCHECK(web_state);
55 InfoBarManagerImpl::~InfoBarManagerImpl() {
56 ShutDown();
59 int InfoBarManagerImpl::GetActiveEntryID() {
60 web::NavigationItem* visible_item =
61 web_state()->GetNavigationManager()->GetVisibleItem();
62 return visible_item ? visible_item->GetUniqueID() : 0;
65 scoped_ptr<infobars::InfoBar> InfoBarManagerImpl::CreateConfirmInfoBar(
66 scoped_ptr<ConfirmInfoBarDelegate> delegate) {
67 return ::CreateConfirmInfoBar(delegate.Pass());
70 void InfoBarManagerImpl::NavigationItemCommitted(
71 const web::LoadCommittedDetails& load_details) {
72 OnNavigation(NavigationDetailsFromLoadCommittedDetails(load_details));
75 void InfoBarManagerImpl::WebStateDestroyed() {
76 // The WebState is going away; be aggressively paranoid and delete this
77 // InfoBarManagerImpl lest other parts of the system attempt to add infobars
78 // or use it otherwise during the destruction.
79 web_state()->RemoveUserData(UserDataKey());
80 // That was the equivalent of "delete this". This object is now destroyed;
81 // returning from this function is the only safe thing to do.