| 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/browser_tab_contents.h" | 5 #include "chrome/browser/ui/browser_tab_contents.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "chrome/browser/browser_process.h" | 8 #include "chrome/browser/browser_process.h" |
| 9 #include "chrome/browser/content_settings/tab_specific_content_settings.h" | 9 #include "chrome/browser/content_settings/tab_specific_content_settings.h" |
| 10 #include "chrome/browser/extensions/api/web_navigation/web_navigation_api.h" | 10 #include "chrome/browser/extensions/api/web_navigation/web_navigation_api.h" |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 #include "chrome/browser/ui/hung_plugin_tab_helper.h" | 35 #include "chrome/browser/ui/hung_plugin_tab_helper.h" |
| 36 #include "chrome/browser/ui/pdf/pdf_tab_helper.h" | 36 #include "chrome/browser/ui/pdf/pdf_tab_helper.h" |
| 37 #include "chrome/browser/ui/prefs/prefs_tab_helper.h" | 37 #include "chrome/browser/ui/prefs/prefs_tab_helper.h" |
| 38 #include "chrome/browser/ui/sad_tab_helper.h" | 38 #include "chrome/browser/ui/sad_tab_helper.h" |
| 39 #include "chrome/browser/ui/search/search_tab_helper.h" | 39 #include "chrome/browser/ui/search/search_tab_helper.h" |
| 40 #include "chrome/browser/ui/search_engines/search_engine_tab_helper.h" | 40 #include "chrome/browser/ui/search_engines/search_engine_tab_helper.h" |
| 41 #include "chrome/browser/ui/sync/tab_contents_synced_tab_delegate.h" | 41 #include "chrome/browser/ui/sync/tab_contents_synced_tab_delegate.h" |
| 42 #include "chrome/browser/ui/tab_contents/core_tab_helper.h" | 42 #include "chrome/browser/ui/tab_contents/core_tab_helper.h" |
| 43 #include "chrome/browser/ui/zoom/zoom_controller.h" | 43 #include "chrome/browser/ui/zoom/zoom_controller.h" |
| 44 #include "chrome/common/chrome_switches.h" | 44 #include "chrome/common/chrome_switches.h" |
| 45 #include "components/autofill/browser/autofill_manager.h" | |
| 46 #include "components/autofill/content/browser/autofill_driver_impl.h" | 45 #include "components/autofill/content/browser/autofill_driver_impl.h" |
| 46 #include "components/autofill/core/browser/autofill_manager.h" |
| 47 #include "components/web_modal/web_contents_modal_dialog_manager.h" | 47 #include "components/web_modal/web_contents_modal_dialog_manager.h" |
| 48 #include "content/public/browser/web_contents.h" | 48 #include "content/public/browser/web_contents.h" |
| 49 #include "extensions/browser/view_type_utils.h" | 49 #include "extensions/browser/view_type_utils.h" |
| 50 | 50 |
| 51 #if defined(ENABLE_CAPTIVE_PORTAL_DETECTION) | 51 #if defined(ENABLE_CAPTIVE_PORTAL_DETECTION) |
| 52 #include "chrome/browser/captive_portal/captive_portal_tab_helper.h" | 52 #include "chrome/browser/captive_portal/captive_portal_tab_helper.h" |
| 53 #endif | 53 #endif |
| 54 | 54 |
| 55 #if defined(ENABLE_MANAGED_USERS) | 55 #if defined(ENABLE_MANAGED_USERS) |
| 56 #include "chrome/browser/managed_mode/managed_mode_navigation_observer.h" | 56 #include "chrome/browser/managed_mode/managed_mode_navigation_observer.h" |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 std::string(), | 178 std::string(), |
| 179 NULL)) { | 179 NULL)) { |
| 180 OneClickSigninHelper::CreateForWebContents(web_contents); | 180 OneClickSigninHelper::CreateForWebContents(web_contents); |
| 181 } | 181 } |
| 182 #endif | 182 #endif |
| 183 | 183 |
| 184 #if defined(OS_WIN) | 184 #if defined(OS_WIN) |
| 185 MetroPinTabHelper::CreateForWebContents(web_contents); | 185 MetroPinTabHelper::CreateForWebContents(web_contents); |
| 186 #endif | 186 #endif |
| 187 } | 187 } |
| OLD | NEW |