HomeSort by relevance Sort by last modified time
    Searched refs:infobar_service (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /external/chromium_org/chrome/browser/infobars/
simple_alert_infobar_delegate.cc 7 #include "chrome/browser/infobars/infobar_service.h"
11 void SimpleAlertInfoBarDelegate::Create(InfoBarService* infobar_service,
15 infobar_service->AddInfoBar(scoped_ptr<InfoBarDelegate>(
16 new SimpleAlertInfoBarDelegate(infobar_service, icon_id, message,
21 InfoBarService* infobar_service,
25 : ConfirmInfoBarDelegate(infobar_service),
insecure_content_infobar_delegate.cc 9 #include "chrome/browser/infobars/infobar_service.h"
19 void InsecureContentInfoBarDelegate::Create(InfoBarService* infobar_service,
22 new InsecureContentInfoBarDelegate(infobar_service, type));
26 for (size_t i = 0; i < infobar_service->infobar_count(); ++i) {
28 infobar_service->infobar_at(i)->AsInsecureContentInfoBarDelegate();
32 infobar_service->ReplaceInfoBar(delegate, new_infobar.Pass());
37 infobar_service->AddInfoBar(new_infobar.Pass());
45 InfoBarService* infobar_service,
47 : ConfirmInfoBarDelegate(infobar_service),
simple_alert_infobar_delegate.h 15 // Creates a simple alert infobar delegate and adds it to |infobar_service|.
16 static void Create(InfoBarService* infobar_service,
22 SimpleAlertInfoBarDelegate(InfoBarService* infobar_service,
insecure_content_infobar_delegate.h 20 // is already present in |infobar_service|, may do nothing; otherwise, creates
22 // |infobar_service| or replaces the existing infobar.
23 static void Create(InfoBarService* infobar_service, InfoBarType type);
38 InsecureContentInfoBarDelegate(InfoBarService* infobar_service,
  /external/chromium_org/chrome/browser/ui/
collected_cookies_infobar_delegate.cc 8 #include "chrome/browser/infobars/infobar_service.h"
16 void CollectedCookiesInfoBarDelegate::Create(InfoBarService* infobar_service) {
17 infobar_service->AddInfoBar(scoped_ptr<InfoBarDelegate>(
18 new CollectedCookiesInfoBarDelegate(infobar_service)));
22 InfoBarService* infobar_service)
23 : ConfirmInfoBarDelegate(infobar_service) {
collected_cookies_infobar_delegate.h 20 // |infobar_service|.
21 static void Create(InfoBarService* infobar_service);
24 explicit CollectedCookiesInfoBarDelegate(InfoBarService* infobar_service);
  /external/chromium_org/chrome/browser/ui/content_settings/
media_setting_changed_infobar_delegate.cc 8 #include "chrome/browser/infobars/infobar_service.h"
16 InfoBarService* infobar_service) {
17 infobar_service->AddInfoBar(scoped_ptr<InfoBarDelegate>(
18 new MediaSettingChangedInfoBarDelegate(infobar_service)));
22 InfoBarService* infobar_service)
23 : ConfirmInfoBarDelegate(infobar_service) {
media_setting_changed_infobar_delegate.h 17 // |infobar_service|.
18 static void Create(InfoBarService* infobar_service);
21 explicit MediaSettingChangedInfoBarDelegate(InfoBarService* infobar_service);
  /external/chromium_org/chrome/browser/ui/startup/
google_api_keys_infobar_delegate.cc 7 #include "chrome/browser/infobars/infobar_service.h"
16 void GoogleApiKeysInfoBarDelegate::Create(InfoBarService* infobar_service) {
20 infobar_service->AddInfoBar(scoped_ptr<InfoBarDelegate>(
21 new GoogleApiKeysInfoBarDelegate(infobar_service)));
25 InfoBarService* infobar_service)
26 : ConfirmInfoBarDelegate(infobar_service) {
obsolete_os_infobar_delegate.cc 7 #include "chrome/browser/infobars/infobar_service.h"
19 void ObsoleteOSInfoBarDelegate::Create(InfoBarService* infobar_service) {
38 infobar_service->AddInfoBar(scoped_ptr<InfoBarDelegate>(
39 new ObsoleteOSInfoBarDelegate(infobar_service)));
43 InfoBarService* infobar_service)
44 : ConfirmInfoBarDelegate(infobar_service) {
google_api_keys_infobar_delegate.h 19 // delegate and adds it to |infobar_service|.
20 static void Create(InfoBarService* infobar_service);
23 explicit GoogleApiKeysInfoBarDelegate(InfoBarService* infobar_service);
obsolete_os_infobar_delegate.h 19 // Creates an obsolete OS infobar delegate and adds it to |infobar_service|.
20 static void Create(InfoBarService* infobar_service);
23 explicit ObsoleteOSInfoBarDelegate(InfoBarService* infobar_service);
  /external/chromium_org/chrome/browser/ui/website_settings/
website_settings_infobar_delegate.cc 9 #include "chrome/browser/infobars/infobar_service.h"
17 void WebsiteSettingsInfoBarDelegate::Create(InfoBarService* infobar_service) {
18 infobar_service->AddInfoBar(scoped_ptr<InfoBarDelegate>(
19 new WebsiteSettingsInfoBarDelegate(infobar_service)));
23 InfoBarService* infobar_service)
24 : ConfirmInfoBarDelegate(infobar_service) {
website_settings_infobar_delegate.h 20 // |infobar_service|.
21 static void Create(InfoBarService* infobar_service);
24 explicit WebsiteSettingsInfoBarDelegate(InfoBarService* infobar_service);
  /external/chromium_org/chrome/browser/nacl_host/
nacl_infobar_delegate.cc 7 #include "chrome/browser/infobars/infobar_service.h"
25 InfoBarService* infobar_service =
27 if (infobar_service) {
28 infobar_service->AddInfoBar(scoped_ptr<InfoBarDelegate>(
29 new NaClInfoBarDelegate(infobar_service)));
33 NaClInfoBarDelegate::NaClInfoBarDelegate(InfoBarService* infobar_service)
34 : ConfirmInfoBarDelegate(infobar_service) {
  /external/chromium_org/chrome/browser/download/
download_request_infobar_delegate.cc 7 #include "chrome/browser/infobars/infobar_service.h"
22 InfoBarService* infobar_service,
26 DownloadRequestInfoBarDelegate::callback_->Run(infobar_service, host);
27 } else if (!infobar_service) {
38 infobar_service->AddInfoBar(scoped_ptr<InfoBarDelegate>(
39 new DownloadRequestInfoBarDelegate(infobar_service, host)));
50 InfoBarService* infobar_service,
52 : ConfirmInfoBarDelegate(infobar_service),
download_request_infobar_delegate.h 22 InfoBarService* infobar_service,
28 // Creates a download request delegate and adds it to |infobar_service|.
30 InfoBarService* infobar_service,
47 InfoBarService* infobar_service,
  /external/chromium_org/chrome/browser/accessibility/
accessibility_extension_apitest.cc 8 #include "chrome/browser/infobars/infobar_service.h"
31 InfoBarService* infobar_service = local
33 ASSERT_TRUE(infobar_service);
36 SimpleAlertInfoBarDelegate::Create(infobar_service,
  /external/chromium_org/chrome/browser/media/
midi_permission_infobar_delegate.cc 9 #include "chrome/browser/infobars/infobar_service.h"
21 InfoBarService* infobar_service,
26 return infobar_service->AddInfoBar(scoped_ptr<InfoBarDelegate>(
27 new MIDIPermissionInfoBarDelegate(infobar_service,
35 InfoBarService* infobar_service,
40 : ConfirmInfoBarDelegate(infobar_service),
45 const content::NavigationEntry* committed_entry = infobar_service->
  /external/chromium_org/chrome/browser/geolocation/
chrome_geolocation_permission_context_unittest.cc 22 #include "chrome/browser/infobars/infobar_service.h"
106 InfoBarService* infobar_service() { function in class:GeolocationPermissionContextTests
259 EXPECT_EQ(0U, infobar_service()->infobar_count());
261 ASSERT_EQ(1U, infobar_service()->infobar_count());
263 infobar_service()->infobar_at(0)->AsConfirmInfoBarDelegate();
266 infobar_service()->RemoveInfoBar(infobar_delegate);
277 EXPECT_EQ(0U, infobar_service()->infobar_count());
279 EXPECT_EQ(1U, infobar_service()->infobar_count());
281 infobar_service()->infobar_at(0)->AsConfirmInfoBarDelegate();
288 EXPECT_EQ(0U, infobar_service()->infobar_count())
    [all...]
geolocation_infobar_delegate.cc 9 #include "chrome/browser/infobars/infobar_service.h"
29 InfoBarService* infobar_service,
35 infobar_service->web_contents()->GetController().GetLastCommittedEntry();
36 return infobar_service->AddInfoBar(scoped_ptr<InfoBarDelegate>(
37 new DelegateType(infobar_service, controller, id, requesting_frame,
43 InfoBarService* infobar_service,
49 : ConfirmInfoBarDelegate(infobar_service),
geolocation_infobar_delegate_android.cc 15 InfoBarService* infobar_service,
21 : GeolocationInfoBarDelegate(infobar_service, controller, id,
  /external/chromium_org/chrome/browser/ui/omnibox/
alternate_nav_infobar_delegate.cc 8 #include "chrome/browser/infobars/infobar_service.h"
16 void AlternateNavInfoBarDelegate::Create(InfoBarService* infobar_service,
18 infobar_service->AddInfoBar(scoped_ptr<InfoBarDelegate>(
19 new AlternateNavInfoBarDelegate(infobar_service, alternate_nav_url)));
  /external/chromium_org/chrome/browser/custom_handlers/
register_protocol_handler_infobar_delegate.cc 9 #include "chrome/browser/infobars/infobar_service.h"
18 InfoBarService* infobar_service,
25 new RegisterProtocolHandlerInfoBarDelegate(infobar_service, registry,
28 for (size_t i = 0; i < infobar_service->infobar_count(); ++i) {
30 infobar_service->infobar_at(i)->
34 infobar_service->ReplaceInfoBar(existing_delegate, infobar.Pass());
39 infobar_service->AddInfoBar(infobar.Pass());
43 InfoBarService* infobar_service,
46 : ConfirmInfoBarDelegate(infobar_service),
  /external/chromium_org/chrome/browser/extensions/
theme_installed_infobar_delegate.cc 12 #include "chrome/browser/infobars/infobar_service.h"
47 InfoBarService* infobar_service =
51 infobar_service, profile->GetExtensionService(), theme_service, new_theme,
56 for (size_t i = 0; i < infobar_service->infobar_count(); ++i) {
57 InfoBarDelegate* old_infobar = infobar_service->infobar_at(i);
65 infobar_service->ReplaceInfoBar(old_infobar, new_infobar.Pass());
73 infobar_service->AddInfoBar(new_infobar.Pass());
78 InfoBarService* infobar_service,
84 : ConfirmInfoBarDelegate(infobar_service),

Completed in 449 milliseconds

1 2 3 4