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 // Implementation of the SafeBrowsingBlockingPage class. | 5 // Implementation of the SafeBrowsingBlockingPage class. |
6 | 6 |
7 #include "chrome/browser/safe_browsing/safe_browsing_blocking_page.h" | 7 #include "chrome/browser/safe_browsing/safe_browsing_blocking_page.h" |
8 | 8 |
9 #include "base/lazy_instance.h" | 9 #include "base/lazy_instance.h" |
10 #include "chrome/browser/history/history_service_factory.h" | 10 #include "chrome/browser/history/history_service_factory.h" |
11 #include "chrome/browser/interstitials/chrome_controller_client.h" | 11 #include "chrome/browser/interstitials/chrome_controller_client.h" |
12 #include "chrome/browser/interstitials/chrome_metrics_helper.h" | 12 #include "chrome/browser/interstitials/chrome_metrics_helper.h" |
13 #include "chrome/browser/profiles/profile.h" | 13 #include "chrome/browser/profiles/profile.h" |
14 #include "chrome/browser/renderer_preferences_util.h" | 14 #include "chrome/browser/renderer_preferences_util.h" |
15 #include "chrome/browser/safe_browsing/threat_details.h" | |
16 #include "chrome/common/pref_names.h" | 15 #include "chrome/common/pref_names.h" |
17 #include "components/prefs/pref_service.h" | 16 #include "components/prefs/pref_service.h" |
| 17 #include "components/safe_browsing/browser/threat_details.h" |
18 #include "components/safe_browsing_db/safe_browsing_prefs.h" | 18 #include "components/safe_browsing_db/safe_browsing_prefs.h" |
19 #include "content/public/browser/browser_thread.h" | 19 #include "content/public/browser/browser_thread.h" |
20 #include "content/public/browser/interstitial_page.h" | 20 #include "content/public/browser/interstitial_page.h" |
21 #include "content/public/browser/navigation_entry.h" | 21 #include "content/public/browser/navigation_entry.h" |
22 #include "content/public/browser/web_contents.h" | 22 #include "content/public/browser/web_contents.h" |
23 | 23 |
24 using content::BrowserThread; | 24 using content::BrowserThread; |
25 using content::InterstitialPage; | 25 using content::InterstitialPage; |
26 using content::WebContents; | 26 using content::WebContents; |
27 using security_interstitials::SafeBrowsingErrorUI; | 27 using security_interstitials::SafeBrowsingErrorUI; |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
269 web_contents, unsafe_resources[0].url, | 269 web_contents, unsafe_resources[0].url, |
270 GetReportingInfo(unsafe_resources), | 270 GetReportingInfo(unsafe_resources), |
271 GetSamplingEventName(GetInterstitialReason(unsafe_resources))); | 271 GetSamplingEventName(GetInterstitialReason(unsafe_resources))); |
272 | 272 |
273 return base::MakeUnique<SecurityInterstitialControllerClient>( | 273 return base::MakeUnique<SecurityInterstitialControllerClient>( |
274 web_contents, std::move(metrics_helper), profile->GetPrefs(), | 274 web_contents, std::move(metrics_helper), profile->GetPrefs(), |
275 ui_manager->app_locale(), ui_manager->default_safe_page()); | 275 ui_manager->app_locale(), ui_manager->default_safe_page()); |
276 } | 276 } |
277 | 277 |
278 } // namespace safe_browsing | 278 } // namespace safe_browsing |
OLD | NEW |