Chromium Code Reviews| OLD | NEW |
|---|---|
| 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_db/safe_browsing_prefs.h" |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 92 | 92 |
| 93 bool SecurityInterstitialControllerClient::CanLaunchDateAndTimeSettings() { | 93 bool SecurityInterstitialControllerClient::CanLaunchDateAndTimeSettings() { |
| 94 NOTREACHED(); | 94 NOTREACHED(); |
| 95 return false; | 95 return false; |
| 96 } | 96 } |
| 97 | 97 |
| 98 void SecurityInterstitialControllerClient::LaunchDateAndTimeSettings() { | 98 void SecurityInterstitialControllerClient::LaunchDateAndTimeSettings() { |
| 99 NOTREACHED(); | 99 NOTREACHED(); |
| 100 } | 100 } |
| 101 | 101 |
| 102 // For testing, should be set in the WV controller. | |
|
felt
2017/05/05 00:31:14
I'm confused by this comment
edwardjung
2017/05/05 10:24:24
Wasn't sure whether this was going to be hard code
| |
| 103 bool SecurityInterstitialControllerClient::CanGoBack() { | |
| 104 return true; | |
| 105 } | |
| 106 | |
| 102 } // namespace security_interstitials | 107 } // namespace security_interstitials |
| OLD | NEW |