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 "base/auto_reset.h" | 7 #include "base/auto_reset.h" |
8 #include "base/bind.h" | 8 #include "base/bind.h" |
9 #include "base/debug/crash_logging.h" | 9 #include "base/debug/crash_logging.h" |
10 #include "base/metrics/histogram.h" | 10 #include "base/metrics/histogram.h" |
11 #include "base/stl_util.h" | 11 #include "base/stl_util.h" |
12 #include "base/strings/utf_string_conversions.h" | 12 #include "base/strings/utf_string_conversions.h" |
13 #include "chrome/browser/browser_process.h" | 13 #include "chrome/browser/browser_process.h" |
14 #include "chrome/browser/infobars/infobar_service.h" | 14 #include "chrome/browser/infobars/infobar_service.h" |
15 #include "chrome/browser/lifetime/application_lifetime.h" | 15 #include "chrome/browser/lifetime/application_lifetime.h" |
16 #include "chrome/browser/metrics/metrics_services_manager.h" | 16 #include "chrome/browser/metrics/metrics_services_manager.h" |
17 #include "chrome/browser/plugins/plugin_finder.h" | 17 #include "chrome/browser/plugins/plugin_finder.h" |
18 #include "chrome/browser/plugins/plugin_infobar_delegates.h" | 18 #include "chrome/browser/plugins/plugin_infobar_delegates.h" |
19 #include "chrome/browser/profiles/profile.h" | 19 #include "chrome/browser/profiles/profile.h" |
20 #include "chrome/browser/ui/tab_modal_confirm_dialog.h" | 20 #include "chrome/browser/ui/tab_modal_confirm_dialog.h" |
21 #include "chrome/common/render_messages.h" | 21 #include "chrome/common/render_messages.h" |
22 #include "chrome/common/url_constants.h" | 22 #include "chrome/common/url_constants.h" |
23 #include "chrome/grit/generated_resources.h" | 23 #include "chrome/grit/generated_resources.h" |
| 24 #include "components/content_settings/content/common/content_settings_messages.h
" |
24 #include "components/content_settings/core/browser/host_content_settings_map.h" | 25 #include "components/content_settings/core/browser/host_content_settings_map.h" |
25 #include "components/infobars/core/confirm_infobar_delegate.h" | 26 #include "components/infobars/core/confirm_infobar_delegate.h" |
26 #include "components/infobars/core/infobar.h" | 27 #include "components/infobars/core/infobar.h" |
27 #include "components/infobars/core/simple_alert_infobar_delegate.h" | 28 #include "components/infobars/core/simple_alert_infobar_delegate.h" |
28 #include "content/public/browser/plugin_service.h" | 29 #include "content/public/browser/plugin_service.h" |
29 #include "content/public/browser/render_frame_host.h" | 30 #include "content/public/browser/render_frame_host.h" |
30 #include "content/public/browser/render_view_host.h" | 31 #include "content/public/browser/render_view_host.h" |
31 #include "content/public/browser/web_contents.h" | 32 #include "content/public/browser/web_contents.h" |
32 #include "content/public/browser/web_contents_delegate.h" | 33 #include "content/public/browser/web_contents_delegate.h" |
33 #include "content/public/common/webplugininfo.h" | 34 #include "content/public/common/webplugininfo.h" |
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
433 scoped_ptr<PluginMetadata> plugin; | 434 scoped_ptr<PluginMetadata> plugin; |
434 bool ret = PluginFinder::GetInstance()->FindPluginWithIdentifier( | 435 bool ret = PluginFinder::GetInstance()->FindPluginWithIdentifier( |
435 identifier, NULL, &plugin); | 436 identifier, NULL, &plugin); |
436 DCHECK(ret); | 437 DCHECK(ret); |
437 | 438 |
438 PluginMetroModeInfoBarDelegate::Create( | 439 PluginMetroModeInfoBarDelegate::Create( |
439 InfoBarService::FromWebContents(web_contents()), | 440 InfoBarService::FromWebContents(web_contents()), |
440 PluginMetroModeInfoBarDelegate::DESKTOP_MODE_REQUIRED, plugin->name()); | 441 PluginMetroModeInfoBarDelegate::DESKTOP_MODE_REQUIRED, plugin->name()); |
441 #endif | 442 #endif |
442 } | 443 } |
OLD | NEW |