| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/plugin_observer.h" | 5 #include "chrome/browser/plugin_observer.h" |
| 6 | 6 |
| 7 #include "base/auto_reset.h" | 7 #include "base/auto_reset.h" |
| 8 #include "base/bind.h" | 8 #include "base/bind.h" |
| 9 #include "base/stl_util.h" | 9 #include "base/stl_util.h" |
| 10 #include "base/utf_string_conversions.h" | 10 #include "base/utf_string_conversions.h" |
| 11 #include "chrome/browser/api/infobars/confirm_infobar_delegate.h" |
| 12 #include "chrome/browser/api/infobars/simple_alert_infobar_delegate.h" |
| 11 #include "chrome/browser/browser_process.h" | 13 #include "chrome/browser/browser_process.h" |
| 12 #include "chrome/browser/content_settings/host_content_settings_map.h" | 14 #include "chrome/browser/content_settings/host_content_settings_map.h" |
| 13 #include "chrome/browser/infobars/infobar_tab_helper.h" | 15 #include "chrome/browser/infobars/infobar_tab_helper.h" |
| 14 #include "chrome/browser/metrics/metrics_service.h" | 16 #include "chrome/browser/metrics/metrics_service.h" |
| 15 #include "chrome/browser/plugin_finder.h" | 17 #include "chrome/browser/plugin_finder.h" |
| 16 #include "chrome/browser/plugin_infobar_delegates.h" | 18 #include "chrome/browser/plugin_infobar_delegates.h" |
| 17 #include "chrome/browser/profiles/profile.h" | 19 #include "chrome/browser/profiles/profile.h" |
| 18 #include "chrome/browser/tab_contents/confirm_infobar_delegate.h" | |
| 19 #include "chrome/browser/tab_contents/simple_alert_infobar_delegate.h" | |
| 20 #include "chrome/browser/ui/browser_dialogs.h" | 20 #include "chrome/browser/ui/browser_dialogs.h" |
| 21 #include "chrome/browser/ui/tab_contents/tab_contents.h" | 21 #include "chrome/browser/ui/tab_contents/tab_contents.h" |
| 22 #include "chrome/common/render_messages.h" | 22 #include "chrome/common/render_messages.h" |
| 23 #include "chrome/common/url_constants.h" | 23 #include "chrome/common/url_constants.h" |
| 24 #include "content/public/browser/plugin_service.h" | 24 #include "content/public/browser/plugin_service.h" |
| 25 #include "content/public/browser/render_view_host.h" | 25 #include "content/public/browser/render_view_host.h" |
| 26 #include "content/public/browser/web_contents.h" | 26 #include "content/public/browser/web_contents.h" |
| 27 #include "content/public/browser/web_contents_delegate.h" | 27 #include "content/public/browser/web_contents_delegate.h" |
| 28 #include "grit/generated_resources.h" | 28 #include "grit/generated_resources.h" |
| 29 #include "grit/theme_resources.h" | 29 #include "grit/theme_resources.h" |
| (...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 InfoBarTabHelper* infobar_helper = tab_contents_->infobar_tab_helper(); | 329 InfoBarTabHelper* infobar_helper = tab_contents_->infobar_tab_helper(); |
| 330 infobar_helper->AddInfoBar(new SimpleAlertInfoBarDelegate( | 330 infobar_helper->AddInfoBar(new SimpleAlertInfoBarDelegate( |
| 331 infobar_helper, | 331 infobar_helper, |
| 332 &ResourceBundle::GetSharedInstance().GetNativeImageNamed( | 332 &ResourceBundle::GetSharedInstance().GetNativeImageNamed( |
| 333 IDR_INFOBAR_PLUGIN_CRASHED), | 333 IDR_INFOBAR_PLUGIN_CRASHED), |
| 334 l10n_util::GetStringFUTF16(IDS_PLUGIN_INITIALIZATION_ERROR_PROMPT, | 334 l10n_util::GetStringFUTF16(IDS_PLUGIN_INITIALIZATION_ERROR_PROMPT, |
| 335 plugin_name), | 335 plugin_name), |
| 336 true /* auto_expire */)); | 336 true /* auto_expire */)); |
| 337 } | 337 } |
| 338 | 338 |
| OLD | NEW |