| 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_infobar_delegates.h" | 5 #include "chrome/browser/plugin_infobar_delegates.h" |
| 6 | 6 |
| 7 #include "base/utf_string_conversions.h" | 7 #include "base/utf_string_conversions.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/google/google_util.h" | 9 #include "chrome/browser/google/google_util.h" |
| 10 #include "chrome/browser/infobars/infobar_tab_helper.h" | 10 #include "chrome/browser/infobars/infobar_tab_helper.h" |
| 11 #include "chrome/browser/plugin_observer.h" | 11 #include "chrome/browser/plugin_observer.h" |
| 12 #include "chrome/browser/ui/tab_contents/tab_contents.h" | 12 #include "chrome/browser/ui/tab_contents/tab_contents.h" |
| 13 #include "chrome/common/render_messages.h" | 13 #include "chrome/common/render_messages.h" |
| 14 #include "chrome/common/url_constants.h" | 14 #include "chrome/common/url_constants.h" |
| 15 #include "content/public/browser/render_view_host.h" | 15 #include "content/public/browser/render_view_host.h" |
| 16 #include "content/public/browser/user_metrics.h" | 16 #include "content/public/browser/user_metrics.h" |
| 17 #include "content/public/browser/web_contents.h" | 17 #include "content/public/browser/web_contents.h" |
| 18 #include "grit/generated_resources.h" | 18 #include "grit/generated_resources.h" |
| 19 #include "grit/locale_settings.h" | 19 #include "grit/locale_settings.h" |
| 20 #include "grit/theme_resources_standard.h" | 20 #include "grit/theme_resources.h" |
| 21 #include "ui/base/l10n/l10n_util.h" | 21 #include "ui/base/l10n/l10n_util.h" |
| 22 #include "ui/base/resource/resource_bundle.h" | 22 #include "ui/base/resource/resource_bundle.h" |
| 23 #include "webkit/plugins/npapi/plugin_group.h" | 23 #include "webkit/plugins/npapi/plugin_group.h" |
| 24 | 24 |
| 25 #if defined(ENABLE_PLUGIN_INSTALLATION) | 25 #if defined(ENABLE_PLUGIN_INSTALLATION) |
| 26 #include "chrome/browser/plugin_installer.h" | 26 #include "chrome/browser/plugin_installer.h" |
| 27 #endif // defined(ENABLE_PLUGIN_INSTALLATION) | 27 #endif // defined(ENABLE_PLUGIN_INSTALLATION) |
| 28 | 28 |
| 29 using content::OpenURLParams; | 29 using content::OpenURLParams; |
| 30 using content::Referrer; | 30 using content::Referrer; |
| (...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 "https://www.google.com/support/chrome/bin/answer.py?answer=142064")); | 467 "https://www.google.com/support/chrome/bin/answer.py?answer=142064")); |
| 468 OpenURLParams params( | 468 OpenURLParams params( |
| 469 url, Referrer(), | 469 url, Referrer(), |
| 470 (disposition == CURRENT_TAB) ? NEW_FOREGROUND_TAB : disposition, | 470 (disposition == CURRENT_TAB) ? NEW_FOREGROUND_TAB : disposition, |
| 471 content::PAGE_TRANSITION_LINK, false); | 471 content::PAGE_TRANSITION_LINK, false); |
| 472 owner()->web_contents()->OpenURL(params); | 472 owner()->web_contents()->OpenURL(params); |
| 473 return false; | 473 return false; |
| 474 } | 474 } |
| 475 #endif // defined(OS_WIN) | 475 #endif // defined(OS_WIN) |
| 476 #endif // defined(ENABLE_PLUGIN_INSTALLATION) | 476 #endif // defined(ENABLE_PLUGIN_INSTALLATION) |
| OLD | NEW |