Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(643)

Side by Side Diff: chrome/browser/ui/tab_helpers.cc

Issue 1321713005: Abstract WebContents/NavigationController from core TabRestore code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 27 matching lines...) Expand all
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/dom_distiller/core/dom_distiller_switches.h"
45 #include "components/history/content/browser/web_contents_top_sites_observer.h" 45 #include "components/history/content/browser/web_contents_top_sites_observer.h"
46 #include "components/history/core/browser/top_sites.h" 46 #include "components/history/core/browser/top_sites.h"
47 #include "components/password_manager/core/browser/password_manager.h" 47 #include "components/password_manager/core/browser/password_manager.h"
48 #include "components/sessions/content/content_open_tab.h"
48 #include "components/tracing/tracing_switches.h" 49 #include "components/tracing/tracing_switches.h"
49 #include "content/public/browser/web_contents.h" 50 #include "content/public/browser/web_contents.h"
50 51
51 #if defined(OS_ANDROID) 52 #if defined(OS_ANDROID)
52 #include "chrome/browser/android/offline_pages/offline_page_web_contents_observe r.h" 53 #include "chrome/browser/android/offline_pages/offline_page_web_contents_observe r.h"
53 #include "chrome/browser/android/voice_search_tab_helper.h" 54 #include "chrome/browser/android/voice_search_tab_helper.h"
54 #include "chrome/browser/android/webapps/single_tab_mode_tab_helper.h" 55 #include "chrome/browser/android/webapps/single_tab_mode_tab_helper.h"
55 #include "chrome/browser/ui/android/context_menu_helper.h" 56 #include "chrome/browser/ui/android/context_menu_helper.h"
56 #include "chrome/browser/ui/android/window_android_helper.h" 57 #include "chrome/browser/ui/android/window_android_helper.h"
57 #else 58 #else
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 FindTabHelper::CreateForWebContents(web_contents); 157 FindTabHelper::CreateForWebContents(web_contents);
157 history::WebContentsTopSitesObserver::CreateForWebContents( 158 history::WebContentsTopSitesObserver::CreateForWebContents(
158 web_contents, TopSitesFactory::GetForProfile( 159 web_contents, TopSitesFactory::GetForProfile(
159 Profile::FromBrowserContext( 160 Profile::FromBrowserContext(
160 web_contents->GetBrowserContext())).get()); 161 web_contents->GetBrowserContext())).get());
161 HistoryTabHelper::CreateForWebContents(web_contents); 162 HistoryTabHelper::CreateForWebContents(web_contents);
162 InfoBarService::CreateForWebContents(web_contents); 163 InfoBarService::CreateForWebContents(web_contents);
163 ManagePasswordsUIController::CreateForWebContents(web_contents); 164 ManagePasswordsUIController::CreateForWebContents(web_contents);
164 NavigationCorrectionTabObserver::CreateForWebContents(web_contents); 165 NavigationCorrectionTabObserver::CreateForWebContents(web_contents);
165 NavigationMetricsRecorder::CreateForWebContents(web_contents); 166 NavigationMetricsRecorder::CreateForWebContents(web_contents);
167 sessions::ContentOpenTab::CreateForWebContents(web_contents);
166 PopupBlockerTabHelper::CreateForWebContents(web_contents); 168 PopupBlockerTabHelper::CreateForWebContents(web_contents);
167 PrefsTabHelper::CreateForWebContents(web_contents); 169 PrefsTabHelper::CreateForWebContents(web_contents);
168 prerender::PrerenderTabHelper::CreateForWebContents(web_contents); 170 prerender::PrerenderTabHelper::CreateForWebContents(web_contents);
169 SearchTabHelper::CreateForWebContents(web_contents); 171 SearchTabHelper::CreateForWebContents(web_contents);
170 if (SiteEngagementService::IsEnabled()) 172 if (SiteEngagementService::IsEnabled())
171 SiteEngagementHelper::CreateForWebContents(web_contents); 173 SiteEngagementHelper::CreateForWebContents(web_contents);
172 // TODO(vabr): Remove TabSpecificContentSettings from here once their function 174 // TODO(vabr): Remove TabSpecificContentSettings from here once their function
173 // is taken over by ChromeContentSettingsClient. http://crbug.com/387075 175 // is taken over by ChromeContentSettingsClient. http://crbug.com/387075
174 TabSpecificContentSettings::CreateForWebContents(web_contents); 176 TabSpecificContentSettings::CreateForWebContents(web_contents);
175 177
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 web_contents); 247 web_contents);
246 } 248 }
247 249
248 if (base::CommandLine::ForCurrentProcess()->HasSwitch( 250 if (base::CommandLine::ForCurrentProcess()->HasSwitch(
249 switches::kEnableNavigationTracing) && 251 switches::kEnableNavigationTracing) &&
250 base::CommandLine::ForCurrentProcess()->HasSwitch( 252 base::CommandLine::ForCurrentProcess()->HasSwitch(
251 switches::kTraceUploadURL)) { 253 switches::kTraceUploadURL)) {
252 tracing::NavigationTracingObserver::CreateForWebContents(web_contents); 254 tracing::NavigationTracingObserver::CreateForWebContents(web_contents);
253 } 255 }
254 } 256 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698