| 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/plugins/plugin_observer.h" | 5 #include "chrome/browser/plugins/plugin_observer.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/auto_reset.h" | 9 #include "base/auto_reset.h" |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| 11 #include "base/debug/crash_logging.h" | 11 #include "base/debug/crash_logging.h" |
| 12 #include "base/memory/ptr_util.h" | 12 #include "base/memory/ptr_util.h" |
| 13 #include "base/metrics/histogram_macros.h" | 13 #include "base/metrics/histogram_macros.h" |
| 14 #include "base/stl_util.h" | 14 #include "base/stl_util.h" |
| 15 #include "base/strings/utf_string_conversions.h" | 15 #include "base/strings/utf_string_conversions.h" |
| 16 #include "build/build_config.h" | 16 #include "build/build_config.h" |
| 17 #include "chrome/browser/browser_process.h" | 17 #include "chrome/browser/browser_process.h" |
| 18 #include "chrome/browser/infobars/infobar_service.h" | 18 #include "chrome/browser/infobars/infobar_service.h" |
| 19 #include "chrome/browser/lifetime/application_lifetime.h" | 19 #include "chrome/browser/lifetime/application_lifetime.h" |
| 20 #include "chrome/browser/plugins/flash_download_interception.h" | 20 #include "chrome/browser/plugins/flash_download_interception.h" |
| 21 #include "chrome/browser/plugins/plugin_finder.h" | 21 #include "chrome/browser/plugins/plugin_finder.h" |
| 22 #include "chrome/browser/plugins/plugin_infobar_delegates.h" | 22 #include "chrome/browser/plugins/plugin_infobar_delegates.h" |
| 23 #include "chrome/browser/profiles/profile.h" | 23 #include "chrome/browser/profiles/profile.h" |
| 24 #include "chrome/browser/ui/tab_modal_confirm_dialog.h" | 24 #include "chrome/browser/ui/tab_modal_confirm_dialog.h" |
| 25 #include "chrome/common/render_messages.h" | 25 #include "chrome/common/render_messages.h" |
| 26 #include "chrome/common/url_constants.h" | 26 #include "chrome/common/url_constants.h" |
| 27 #include "chrome/grit/generated_resources.h" | 27 #include "chrome/grit/generated_resources.h" |
| 28 #include "chrome/grit/theme_resources.h" | 28 #include "chrome/grit/theme_resources.h" |
| 29 #include "components/component_updater/component_updater_service.h" | 29 #include "components/component_updater/component_updater_service.h" |
| 30 #include "components/content_settings/content/common/content_settings_messages.h
" | |
| 31 #include "components/content_settings/core/browser/host_content_settings_map.h" | 30 #include "components/content_settings/core/browser/host_content_settings_map.h" |
| 32 #include "components/infobars/core/confirm_infobar_delegate.h" | 31 #include "components/infobars/core/confirm_infobar_delegate.h" |
| 33 #include "components/infobars/core/infobar.h" | 32 #include "components/infobars/core/infobar.h" |
| 34 #include "components/infobars/core/infobar_delegate.h" | 33 #include "components/infobars/core/infobar_delegate.h" |
| 35 #include "components/infobars/core/simple_alert_infobar_delegate.h" | 34 #include "components/infobars/core/simple_alert_infobar_delegate.h" |
| 36 #include "components/metrics_services_manager/metrics_services_manager.h" | 35 #include "components/metrics_services_manager/metrics_services_manager.h" |
| 37 #include "content/public/browser/browser_thread.h" | 36 #include "content/public/browser/browser_thread.h" |
| 38 #include "content/public/browser/plugin_service.h" | 37 #include "content/public/browser/plugin_service.h" |
| 39 #include "content/public/browser/render_frame_host.h" | 38 #include "content/public/browser/render_frame_host.h" |
| 40 #include "content/public/browser/render_view_host.h" | 39 #include "content/public/browser/render_view_host.h" |
| (...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 472 IDR_INFOBAR_PLUGIN_CRASHED, | 471 IDR_INFOBAR_PLUGIN_CRASHED, |
| 473 #if !defined(OS_MACOSX) && !defined(OS_ANDROID) | 472 #if !defined(OS_MACOSX) && !defined(OS_ANDROID) |
| 474 gfx::VectorIconId::EXTENSION_CRASHED, | 473 gfx::VectorIconId::EXTENSION_CRASHED, |
| 475 #else | 474 #else |
| 476 gfx::VectorIconId::VECTOR_ICON_NONE, | 475 gfx::VectorIconId::VECTOR_ICON_NONE, |
| 477 #endif | 476 #endif |
| 478 l10n_util::GetStringFUTF16(IDS_PLUGIN_INITIALIZATION_ERROR_PROMPT, | 477 l10n_util::GetStringFUTF16(IDS_PLUGIN_INITIALIZATION_ERROR_PROMPT, |
| 479 plugin_name), | 478 plugin_name), |
| 480 true); | 479 true); |
| 481 } | 480 } |
| OLD | NEW |