Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(172)

Side by Side Diff: chrome/browser/ui/android/content_settings/popup_blocked_infobar_delegate.cc

Issue 211273007: Split InfoBarService core code into InfoBarManager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase + comments Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/ui/android/content_settings/popup_blocked_infobar_deleg ate.h" 5 #include "chrome/browser/ui/android/content_settings/popup_blocked_infobar_deleg ate.h"
6 6
7 #include "base/prefs/pref_service.h" 7 #include "base/prefs/pref_service.h"
8 #include "chrome/browser/content_settings/host_content_settings_map.h" 8 #include "chrome/browser/content_settings/host_content_settings_map.h"
9 #include "chrome/browser/infobars/infobar.h" 9 #include "chrome/browser/infobars/infobar.h"
10 #include "chrome/browser/infobars/infobar_manager.h"
10 #include "chrome/browser/infobars/infobar_service.h" 11 #include "chrome/browser/infobars/infobar_service.h"
11 #include "chrome/browser/profiles/profile.h" 12 #include "chrome/browser/profiles/profile.h"
12 #include "chrome/browser/ui/blocked_content/popup_blocker_tab_helper.h" 13 #include "chrome/browser/ui/blocked_content/popup_blocker_tab_helper.h"
13 #include "chrome/common/content_settings.h" 14 #include "chrome/common/content_settings.h"
14 #include "chrome/common/content_settings_types.h" 15 #include "chrome/common/content_settings_types.h"
15 #include "grit/generated_resources.h" 16 #include "grit/generated_resources.h"
16 #include "grit/theme_resources.h" 17 #include "grit/theme_resources.h"
17 #include "ui/base/l10n/l10n_util.h" 18 #include "ui/base/l10n/l10n_util.h"
18 19
19 20
20 // static 21 // static
21 void PopupBlockedInfoBarDelegate::Create(content::WebContents* web_contents, 22 void PopupBlockedInfoBarDelegate::Create(content::WebContents* web_contents,
22 int num_popups) { 23 int num_popups) {
23 const GURL& url = web_contents->GetURL(); 24 const GURL& url = web_contents->GetURL();
24 Profile* profile = 25 Profile* profile =
25 Profile::FromBrowserContext(web_contents->GetBrowserContext()); 26 Profile::FromBrowserContext(web_contents->GetBrowserContext());
26 scoped_ptr<InfoBar> infobar(ConfirmInfoBarDelegate::CreateInfoBar( 27 scoped_ptr<InfoBar> infobar(ConfirmInfoBarDelegate::CreateInfoBar(
27 scoped_ptr<ConfirmInfoBarDelegate>( 28 scoped_ptr<ConfirmInfoBarDelegate>(
28 new PopupBlockedInfoBarDelegate( 29 new PopupBlockedInfoBarDelegate(
29 num_popups, url, profile->GetHostContentSettingsMap())))); 30 num_popups, url, profile->GetHostContentSettingsMap()))));
30 31
31 InfoBarService* infobar_service = 32 InfoBarManager* infobar_manager =
32 InfoBarService::FromWebContents(web_contents); 33 InfoBarService::FromWebContents(web_contents)->infobar_manager();
33 // See if there is an existing popup infobar already. 34 // See if there is an existing popup infobar already.
34 // TODO(dfalcantara) When triggering more than one popup the infobar 35 // TODO(dfalcantara) When triggering more than one popup the infobar
35 // will be shown once, then hide then be shown again. 36 // will be shown once, then hide then be shown again.
36 // This will be fixed once we have an in place replace infobar mechanism. 37 // This will be fixed once we have an in place replace infobar mechanism.
37 for (size_t i = 0; i < infobar_service->infobar_count(); ++i) { 38 for (size_t i = 0; i < infobar_manager->infobar_count(); ++i) {
38 InfoBar* existing_infobar = infobar_service->infobar_at(i); 39 InfoBar* existing_infobar = infobar_manager->infobar_at(i);
39 if (existing_infobar->delegate()->AsPopupBlockedInfoBarDelegate()) { 40 if (existing_infobar->delegate()->AsPopupBlockedInfoBarDelegate()) {
40 infobar_service->ReplaceInfoBar(existing_infobar, infobar.Pass()); 41 infobar_manager->ReplaceInfoBar(existing_infobar, infobar.Pass());
41 return; 42 return;
42 } 43 }
43 } 44 }
44 45
45 infobar_service->AddInfoBar(infobar.Pass()); 46 infobar_manager->AddInfoBar(infobar.Pass());
46 } 47 }
47 48
48 PopupBlockedInfoBarDelegate::~PopupBlockedInfoBarDelegate() { 49 PopupBlockedInfoBarDelegate::~PopupBlockedInfoBarDelegate() {
49 } 50 }
50 51
51 int PopupBlockedInfoBarDelegate::GetIconID() const { 52 int PopupBlockedInfoBarDelegate::GetIconID() const {
52 return IDR_BLOCKED_POPUPS; 53 return IDR_BLOCKED_POPUPS;
53 } 54 }
54 55
55 PopupBlockedInfoBarDelegate* 56 PopupBlockedInfoBarDelegate*
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 DCHECK(popup_blocker_helper); 105 DCHECK(popup_blocker_helper);
105 PopupBlockerTabHelper::PopupIdMap blocked_popups = 106 PopupBlockerTabHelper::PopupIdMap blocked_popups =
106 popup_blocker_helper->GetBlockedPopupRequests(); 107 popup_blocker_helper->GetBlockedPopupRequests();
107 for (PopupBlockerTabHelper::PopupIdMap::iterator it = blocked_popups.begin(); 108 for (PopupBlockerTabHelper::PopupIdMap::iterator it = blocked_popups.begin();
108 it != blocked_popups.end(); ++it) 109 it != blocked_popups.end(); ++it)
109 popup_blocker_helper->ShowBlockedPopup(it->first); 110 popup_blocker_helper->ShowBlockedPopup(it->first);
110 111
111 return true; 112 return true;
112 } 113 }
113 114
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698