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

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

Issue 2022783002: Skeleton of the Safe Browsing Subresource Filter. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments from battre@. Created 4 years, 6 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 "build/build_config.h" 8 #include "build/build_config.h"
9 #include "chrome/browser/browser_process.h" 9 #include "chrome/browser/browser_process.h"
10 #include "chrome/browser/content_settings/chrome_content_settings_client.h" 10 #include "chrome/browser/content_settings/chrome_content_settings_client.h"
(...skipping 30 matching lines...) Expand all
41 #include "chrome/browser/ui/tab_dialogs.h" 41 #include "chrome/browser/ui/tab_dialogs.h"
42 #include "chrome/common/chrome_switches.h" 42 #include "chrome/common/chrome_switches.h"
43 #include "chrome/common/features.h" 43 #include "chrome/common/features.h"
44 #include "components/autofill/content/browser/content_autofill_driver_factory.h" 44 #include "components/autofill/content/browser/content_autofill_driver_factory.h"
45 #include "components/autofill/core/browser/autofill_manager.h" 45 #include "components/autofill/core/browser/autofill_manager.h"
46 #include "components/dom_distiller/content/browser/web_contents_main_frame_obser ver.h" 46 #include "components/dom_distiller/content/browser/web_contents_main_frame_obser ver.h"
47 #include "components/dom_distiller/core/dom_distiller_switches.h" 47 #include "components/dom_distiller/core/dom_distiller_switches.h"
48 #include "components/history/content/browser/web_contents_top_sites_observer.h" 48 #include "components/history/content/browser/web_contents_top_sites_observer.h"
49 #include "components/history/core/browser/top_sites.h" 49 #include "components/history/core/browser/top_sites.h"
50 #include "components/password_manager/core/browser/password_manager.h" 50 #include "components/password_manager/core/browser/password_manager.h"
51 #include "components/subresource_filter/content/browser/content_subresource_filt er_driver_factory.h"
51 #include "components/tracing/tracing_switches.h" 52 #include "components/tracing/tracing_switches.h"
52 #include "content/public/browser/web_contents.h" 53 #include "content/public/browser/web_contents.h"
53 54
54 #if BUILDFLAG(ANDROID_JAVA_UI) 55 #if BUILDFLAG(ANDROID_JAVA_UI)
55 #include "chrome/browser/android/data_usage/data_use_tab_helper.h" 56 #include "chrome/browser/android/data_usage/data_use_tab_helper.h"
56 #include "chrome/browser/android/offline_pages/offline_page_tab_helper.h" 57 #include "chrome/browser/android/offline_pages/offline_page_tab_helper.h"
57 #include "chrome/browser/android/offline_pages/recent_tab_helper.h" 58 #include "chrome/browser/android/offline_pages/recent_tab_helper.h"
58 #include "chrome/browser/android/voice_search_tab_helper.h" 59 #include "chrome/browser/android/voice_search_tab_helper.h"
59 #include "chrome/browser/android/webapps/single_tab_mode_tab_helper.h" 60 #include "chrome/browser/android/webapps/single_tab_mode_tab_helper.h"
60 #include "chrome/browser/ui/android/context_menu_helper.h" 61 #include "chrome/browser/ui/android/context_menu_helper.h"
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 NavigationCorrectionTabObserver::CreateForWebContents(web_contents); 167 NavigationCorrectionTabObserver::CreateForWebContents(web_contents);
167 NavigationMetricsRecorder::CreateForWebContents(web_contents); 168 NavigationMetricsRecorder::CreateForWebContents(web_contents);
168 chrome::InitializePageLoadMetricsForWebContents(web_contents); 169 chrome::InitializePageLoadMetricsForWebContents(web_contents);
169 PopupBlockerTabHelper::CreateForWebContents(web_contents); 170 PopupBlockerTabHelper::CreateForWebContents(web_contents);
170 PrefsTabHelper::CreateForWebContents(web_contents); 171 PrefsTabHelper::CreateForWebContents(web_contents);
171 prerender::PrerenderTabHelper::CreateForWebContents(web_contents); 172 prerender::PrerenderTabHelper::CreateForWebContents(web_contents);
172 SearchTabHelper::CreateForWebContents(web_contents); 173 SearchTabHelper::CreateForWebContents(web_contents);
173 ChromeSecurityStateModelClient::CreateForWebContents(web_contents); 174 ChromeSecurityStateModelClient::CreateForWebContents(web_contents);
174 if (SiteEngagementService::IsEnabled()) 175 if (SiteEngagementService::IsEnabled())
175 SiteEngagementHelper::CreateForWebContents(web_contents); 176 SiteEngagementHelper::CreateForWebContents(web_contents);
177 subresource_filter::ContentSubresourceFilterDriverFactory::
178 CreateForWebContents(web_contents);
176 // TODO(vabr): Remove TabSpecificContentSettings from here once their function 179 // TODO(vabr): Remove TabSpecificContentSettings from here once their function
177 // is taken over by ChromeContentSettingsClient. http://crbug.com/387075 180 // is taken over by ChromeContentSettingsClient. http://crbug.com/387075
178 TabSpecificContentSettings::CreateForWebContents(web_contents); 181 TabSpecificContentSettings::CreateForWebContents(web_contents);
179 182
180 // --- Platform-specific tab helpers --- 183 // --- Platform-specific tab helpers ---
181 184
182 #if BUILDFLAG(ANDROID_JAVA_UI) 185 #if BUILDFLAG(ANDROID_JAVA_UI)
183 ContextMenuHelper::CreateForWebContents(web_contents); 186 ContextMenuHelper::CreateForWebContents(web_contents);
184 DataUseTabHelper::CreateForWebContents(web_contents); 187 DataUseTabHelper::CreateForWebContents(web_contents);
185 188
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 255
253 if (predictors::ResourcePrefetchPredictorFactory::GetForProfile( 256 if (predictors::ResourcePrefetchPredictorFactory::GetForProfile(
254 web_contents->GetBrowserContext())) { 257 web_contents->GetBrowserContext())) {
255 predictors::ResourcePrefetchPredictorTabHelper::CreateForWebContents( 258 predictors::ResourcePrefetchPredictorTabHelper::CreateForWebContents(
256 web_contents); 259 web_contents);
257 } 260 }
258 261
259 if (tracing::NavigationTracingObserver::IsEnabled()) 262 if (tracing::NavigationTracingObserver::IsEnabled())
260 tracing::NavigationTracingObserver::CreateForWebContents(web_contents); 263 tracing::NavigationTracingObserver::CreateForWebContents(web_contents);
261 } 264 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698