| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #ifndef CHROME_BROWSER_SSL_BAD_CLOCK_BLOCKING_PAGE_H_ | 5 #ifndef CHROME_BROWSER_SSL_BAD_CLOCK_BLOCKING_PAGE_H_ |
| 6 #define CHROME_BROWSER_SSL_BAD_CLOCK_BLOCKING_PAGE_H_ | 6 #define CHROME_BROWSER_SSL_BAD_CLOCK_BLOCKING_PAGE_H_ |
| 7 | 7 |
| 8 #include <memory> |
| 8 #include <string> | 9 #include <string> |
| 9 | 10 |
| 10 #include "base/callback.h" | 11 #include "base/callback.h" |
| 11 #include "base/macros.h" | 12 #include "base/macros.h" |
| 12 #include "base/memory/scoped_ptr.h" | |
| 13 #include "base/time/time.h" | 13 #include "base/time/time.h" |
| 14 #include "chrome/browser/interstitials/security_interstitial_page.h" | 14 #include "chrome/browser/interstitials/security_interstitial_page.h" |
| 15 #include "chrome/browser/ssl/ssl_cert_reporter.h" | 15 #include "chrome/browser/ssl/ssl_cert_reporter.h" |
| 16 #include "components/ssl_errors/error_classification.h" | 16 #include "components/ssl_errors/error_classification.h" |
| 17 #include "net/ssl/ssl_info.h" | 17 #include "net/ssl/ssl_info.h" |
| 18 | 18 |
| 19 class CertReportHelper; | 19 class CertReportHelper; |
| 20 class GURL; | 20 class GURL; |
| 21 | 21 |
| 22 namespace security_interstitials { | 22 namespace security_interstitials { |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 const base::Time time_triggered_; | 73 const base::Time time_triggered_; |
| 74 std::unique_ptr<ChromeControllerClient> controller_; | 74 std::unique_ptr<ChromeControllerClient> controller_; |
| 75 | 75 |
| 76 std::unique_ptr<security_interstitials::BadClockUI> bad_clock_ui_; | 76 std::unique_ptr<security_interstitials::BadClockUI> bad_clock_ui_; |
| 77 std::unique_ptr<CertReportHelper> cert_report_helper_; | 77 std::unique_ptr<CertReportHelper> cert_report_helper_; |
| 78 | 78 |
| 79 DISALLOW_COPY_AND_ASSIGN(BadClockBlockingPage); | 79 DISALLOW_COPY_AND_ASSIGN(BadClockBlockingPage); |
| 80 }; | 80 }; |
| 81 | 81 |
| 82 #endif // CHROME_BROWSER_SSL_BAD_CLOCK_BLOCKING_PAGE_H_ | 82 #endif // CHROME_BROWSER_SSL_BAD_CLOCK_BLOCKING_PAGE_H_ |
| OLD | NEW |