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

Side by Side Diff: components/security_interstitials/content/security_interstitial_controller_client.cc

Issue 2869383002: Unify safe_browsing* components [1]: move safe_browsing_prefs* (Closed)
Patch Set: fix win bots Created 3 years, 7 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 "components/security_interstitials/content/security_interstitial_contro ller_client.h" 5 #include "components/security_interstitials/content/security_interstitial_contro ller_client.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "components/prefs/pref_service.h" 9 #include "components/prefs/pref_service.h"
10 #include "components/safe_browsing_db/safe_browsing_prefs.h" 10 #include "components/safe_browsing/common/safe_browsing_prefs.h"
11 #include "components/security_interstitials/core/metrics_helper.h" 11 #include "components/security_interstitials/core/metrics_helper.h"
12 #include "content/public/browser/interstitial_page.h" 12 #include "content/public/browser/interstitial_page.h"
13 #include "content/public/browser/web_contents.h" 13 #include "content/public/browser/web_contents.h"
14 #include "content/public/common/referrer.h" 14 #include "content/public/common/referrer.h"
15 15
16 using content::Referrer; 16 using content::Referrer;
17 17
18 namespace security_interstitials { 18 namespace security_interstitials {
19 19
20 SecurityInterstitialControllerClient::SecurityInterstitialControllerClient( 20 SecurityInterstitialControllerClient::SecurityInterstitialControllerClient(
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 bool SecurityInterstitialControllerClient::CanLaunchDateAndTimeSettings() { 97 bool SecurityInterstitialControllerClient::CanLaunchDateAndTimeSettings() {
98 NOTREACHED(); 98 NOTREACHED();
99 return false; 99 return false;
100 } 100 }
101 101
102 void SecurityInterstitialControllerClient::LaunchDateAndTimeSettings() { 102 void SecurityInterstitialControllerClient::LaunchDateAndTimeSettings() {
103 NOTREACHED(); 103 NOTREACHED();
104 } 104 }
105 105
106 } // namespace security_interstitials 106 } // namespace security_interstitials
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698