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/api/infobars/infobar_tab_helper.h" |
8 #include "chrome/browser/content_settings/host_content_settings_map.h" | 9 #include "chrome/browser/content_settings/host_content_settings_map.h" |
9 #include "chrome/browser/google/google_util.h" | 10 #include "chrome/browser/google/google_util.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.h" | 20 #include "grit/theme_resources.h" |
(...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
483 "https://support.google.com/chrome/?ib_display_in_desktop")); | 483 "https://support.google.com/chrome/?ib_display_in_desktop")); |
484 OpenURLParams params( | 484 OpenURLParams params( |
485 url, Referrer(), | 485 url, Referrer(), |
486 (disposition == CURRENT_TAB) ? NEW_FOREGROUND_TAB : disposition, | 486 (disposition == CURRENT_TAB) ? NEW_FOREGROUND_TAB : disposition, |
487 content::PAGE_TRANSITION_LINK, false); | 487 content::PAGE_TRANSITION_LINK, false); |
488 owner()->web_contents()->OpenURL(params); | 488 owner()->web_contents()->OpenURL(params); |
489 return false; | 489 return false; |
490 } | 490 } |
491 #endif // defined(OS_WIN) | 491 #endif // defined(OS_WIN) |
492 #endif // defined(ENABLE_PLUGIN_INSTALLATION) | 492 #endif // defined(ENABLE_PLUGIN_INSTALLATION) |
OLD | NEW |