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/ui/hung_plugin_tab_helper.h" | 5 #include "chrome/browser/ui/hung_plugin_tab_helper.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/process_util.h" | 8 #include "base/process_util.h" |
9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 #include "chrome/browser/api/infobars/confirm_infobar_delegate.h" |
10 #include "chrome/browser/infobars/infobar.h" | 11 #include "chrome/browser/infobars/infobar.h" |
11 #include "chrome/browser/infobars/infobar_tab_helper.h" | 12 #include "chrome/browser/infobars/infobar_tab_helper.h" |
12 #include "chrome/browser/tab_contents/confirm_infobar_delegate.h" | |
13 #include "chrome/browser/ui/tab_contents/tab_contents.h" | 13 #include "chrome/browser/ui/tab_contents/tab_contents.h" |
14 #include "chrome/common/chrome_notification_types.h" | 14 #include "chrome/common/chrome_notification_types.h" |
| 15 #include "content/public/browser/browser_child_process_host_iterator.h" |
15 #include "content/public/browser/browser_thread.h" | 16 #include "content/public/browser/browser_thread.h" |
16 #include "content/public/browser/browser_child_process_host_iterator.h" | |
17 #include "content/public/browser/child_process_data.h" | 17 #include "content/public/browser/child_process_data.h" |
18 #include "content/public/browser/notification_details.h" | 18 #include "content/public/browser/notification_details.h" |
19 #include "content/public/browser/notification_service.h" | 19 #include "content/public/browser/notification_service.h" |
20 #include "content/public/browser/plugin_service.h" | 20 #include "content/public/browser/plugin_service.h" |
21 #include "content/public/common/result_codes.h" | 21 #include "content/public/common/result_codes.h" |
22 #include "grit/chromium_strings.h" | 22 #include "grit/chromium_strings.h" |
23 #include "grit/generated_resources.h" | 23 #include "grit/generated_resources.h" |
24 #include "grit/locale_settings.h" | 24 #include "grit/locale_settings.h" |
25 #include "grit/theme_resources.h" | 25 #include "grit/theme_resources.h" |
26 #include "ui/base/l10n/l10n_util.h" | 26 #include "ui/base/l10n/l10n_util.h" |
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
281 state->info_bar = NULL; | 281 state->info_bar = NULL; |
282 } | 282 } |
283 } | 283 } |
284 | 284 |
285 InfoBarTabHelper* HungPluginTabHelper::GetInfoBarHelper() { | 285 InfoBarTabHelper* HungPluginTabHelper::GetInfoBarHelper() { |
286 TabContents* tab_contents = TabContents::FromWebContents(web_contents()); | 286 TabContents* tab_contents = TabContents::FromWebContents(web_contents()); |
287 if (!tab_contents) | 287 if (!tab_contents) |
288 return NULL; | 288 return NULL; |
289 return tab_contents->infobar_tab_helper(); | 289 return tab_contents->infobar_tab_helper(); |
290 } | 290 } |
OLD | NEW |