| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/tab_helpers.h" | 5 #include "chrome/browser/ui/tab_helpers.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/chrome_content_settings_client.h" | 9 #include "chrome/browser/content_settings/chrome_content_settings_client.h" |
| 10 #include "chrome/browser/content_settings/tab_specific_content_settings.h" | 10 #include "chrome/browser/content_settings/tab_specific_content_settings.h" |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 #include "chrome/browser/ui/passwords/manage_passwords_ui_controller.h" | 34 #include "chrome/browser/ui/passwords/manage_passwords_ui_controller.h" |
| 35 #include "chrome/browser/ui/pdf/chrome_pdf_web_contents_helper_client.h" | 35 #include "chrome/browser/ui/pdf/chrome_pdf_web_contents_helper_client.h" |
| 36 #include "chrome/browser/ui/prefs/prefs_tab_helper.h" | 36 #include "chrome/browser/ui/prefs/prefs_tab_helper.h" |
| 37 #include "chrome/browser/ui/search/search_tab_helper.h" | 37 #include "chrome/browser/ui/search/search_tab_helper.h" |
| 38 #include "chrome/browser/ui/tab_contents/core_tab_helper.h" | 38 #include "chrome/browser/ui/tab_contents/core_tab_helper.h" |
| 39 #include "chrome/browser/ui/tab_dialogs.h" | 39 #include "chrome/browser/ui/tab_dialogs.h" |
| 40 #include "chrome/common/chrome_switches.h" | 40 #include "chrome/common/chrome_switches.h" |
| 41 #include "components/autofill/content/browser/content_autofill_driver_factory.h" | 41 #include "components/autofill/content/browser/content_autofill_driver_factory.h" |
| 42 #include "components/autofill/core/browser/autofill_manager.h" | 42 #include "components/autofill/core/browser/autofill_manager.h" |
| 43 #include "components/dom_distiller/content/browser/web_contents_main_frame_obser
ver.h" | 43 #include "components/dom_distiller/content/browser/web_contents_main_frame_obser
ver.h" |
| 44 #include "components/dom_distiller/core/dom_distiller_switches.h" |
| 44 #include "components/history/content/browser/web_contents_top_sites_observer.h" | 45 #include "components/history/content/browser/web_contents_top_sites_observer.h" |
| 45 #include "components/history/core/browser/top_sites.h" | 46 #include "components/history/core/browser/top_sites.h" |
| 46 #include "components/password_manager/core/browser/password_manager.h" | 47 #include "components/password_manager/core/browser/password_manager.h" |
| 47 #include "content/public/browser/web_contents.h" | 48 #include "content/public/browser/web_contents.h" |
| 48 | 49 |
| 49 #if defined(OS_ANDROID) | 50 #if defined(OS_ANDROID) |
| 50 #include "chrome/browser/android/voice_search_tab_helper.h" | 51 #include "chrome/browser/android/voice_search_tab_helper.h" |
| 51 #include "chrome/browser/android/webapps/single_tab_mode_tab_helper.h" | 52 #include "chrome/browser/android/webapps/single_tab_mode_tab_helper.h" |
| 52 #include "chrome/browser/ui/android/context_menu_helper.h" | 53 #include "chrome/browser/ui/android/context_menu_helper.h" |
| 53 #include "chrome/browser/ui/android/window_android_helper.h" | 54 #include "chrome/browser/ui/android/window_android_helper.h" |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 web_contents); | 241 web_contents); |
| 241 } | 242 } |
| 242 | 243 |
| 243 if (base::CommandLine::ForCurrentProcess()->HasSwitch( | 244 if (base::CommandLine::ForCurrentProcess()->HasSwitch( |
| 244 switches::kEnableNavigationTracing) && | 245 switches::kEnableNavigationTracing) && |
| 245 base::CommandLine::ForCurrentProcess()->HasSwitch( | 246 base::CommandLine::ForCurrentProcess()->HasSwitch( |
| 246 switches::kTraceUploadURL)) { | 247 switches::kTraceUploadURL)) { |
| 247 tracing::NavigationTracingObserver::CreateForWebContents(web_contents); | 248 tracing::NavigationTracingObserver::CreateForWebContents(web_contents); |
| 248 } | 249 } |
| 249 } | 250 } |
| OLD | NEW |