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/external_tab/external_tab_container_win.h" | 5 #include "chrome/browser/external_tab/external_tab_container_win.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/bind_helpers.h" | 10 #include "base/bind_helpers.h" |
11 #include "base/debug/trace_event.h" | 11 #include "base/debug/trace_event.h" |
12 #include "base/i18n/rtl.h" | 12 #include "base/i18n/rtl.h" |
13 #include "base/logging.h" | 13 #include "base/logging.h" |
14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
15 #include "base/string16.h" | 15 #include "base/string16.h" |
16 #include "base/utf_string_conversions.h" | 16 #include "base/utf_string_conversions.h" |
17 #include "base/win/win_util.h" | 17 #include "base/win/win_util.h" |
18 #include "chrome/app/chrome_command_ids.h" | 18 #include "chrome/app/chrome_command_ids.h" |
19 #include "chrome/app/chrome_dll_resource.h" | 19 #include "chrome/app/chrome_dll_resource.h" |
20 #include "chrome/browser/automation/automation_provider.h" | 20 #include "chrome/browser/automation/automation_provider.h" |
21 #include "chrome/browser/debugger/devtools_toggle_action.h" | 21 #include "chrome/browser/debugger/devtools_toggle_action.h" |
22 #include "chrome/browser/debugger/devtools_window.h" | 22 #include "chrome/browser/debugger/devtools_window.h" |
23 #include "chrome/browser/history/history_tab_helper.h" | 23 #include "chrome/browser/history/history_tab_helper.h" |
24 #include "chrome/browser/history/history_types.h" | 24 #include "chrome/browser/history/history_types.h" |
25 #include "chrome/browser/infobars/infobar_tab_helper.h" | 25 #include "chrome/browser/infobars/infobar_tab_helper.h" |
26 #include "chrome/browser/profiles/profile.h" | 26 #include "chrome/browser/profiles/profile.h" |
27 #include "chrome/browser/repost_form_warning_controller.h" | 27 #include "chrome/browser/repost_form_warning_controller.h" |
28 #include "chrome/browser/themes/theme_service.h" | 28 #include "chrome/browser/themes/theme_service.h" |
29 #include "chrome/browser/ui/app_modal_dialogs/message_box_handler.h" | 29 #include "chrome/browser/ui/app_modal_dialogs/javascript_dialog_creator.h" |
30 #include "chrome/browser/ui/blocked_content/blocked_content_tab_helper.h" | 30 #include "chrome/browser/ui/blocked_content/blocked_content_tab_helper.h" |
31 #include "chrome/browser/ui/browser.h" | 31 #include "chrome/browser/ui/browser.h" |
32 #include "chrome/browser/ui/browser_dialogs.h" | 32 #include "chrome/browser/ui/browser_dialogs.h" |
33 #include "chrome/browser/ui/browser_window.h" | 33 #include "chrome/browser/ui/browser_window.h" |
34 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" | 34 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" |
35 #include "chrome/browser/ui/views/infobars/infobar_container_view.h" | 35 #include "chrome/browser/ui/views/infobars/infobar_container_view.h" |
36 #include "chrome/browser/ui/views/tab_contents/render_view_context_menu_views.h" | 36 #include "chrome/browser/ui/views/tab_contents/render_view_context_menu_views.h" |
37 #include "chrome/common/automation_messages.h" | 37 #include "chrome/common/automation_messages.h" |
38 #include "chrome/common/chrome_constants.h" | 38 #include "chrome/common/chrome_constants.h" |
39 #include "chrome/common/chrome_notification_types.h" | 39 #include "chrome/common/chrome_notification_types.h" |
(...skipping 1161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1201 if (params.disposition == CURRENT_TAB) { | 1201 if (params.disposition == CURRENT_TAB) { |
1202 DCHECK(route_all_top_level_navigations_); | 1202 DCHECK(route_all_top_level_navigations_); |
1203 forward_params.disposition = NEW_FOREGROUND_TAB; | 1203 forward_params.disposition = NEW_FOREGROUND_TAB; |
1204 } | 1204 } |
1205 WebContents* new_contents = | 1205 WebContents* new_contents = |
1206 ExternalTabContainer::OpenURLFromTab(source, forward_params); | 1206 ExternalTabContainer::OpenURLFromTab(source, forward_params); |
1207 // support only one navigation for a dummy tab before it is killed. | 1207 // support only one navigation for a dummy tab before it is killed. |
1208 ::DestroyWindow(GetNativeView()); | 1208 ::DestroyWindow(GetNativeView()); |
1209 return new_contents; | 1209 return new_contents; |
1210 } | 1210 } |
OLD | NEW |