| 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 <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/callback.h" | 10 #include "base/callback.h" |
| 11 #include "base/macros.h" |
| 11 #include "base/time/time.h" | 12 #include "base/time/time.h" |
| 12 #include "chrome/browser/interstitials/security_interstitial_page.h" | 13 #include "chrome/browser/interstitials/security_interstitial_page.h" |
| 13 #include "chrome/browser/ssl/ssl_cert_reporter.h" | 14 #include "chrome/browser/ssl/ssl_cert_reporter.h" |
| 14 #include "net/ssl/ssl_info.h" | 15 #include "net/ssl/ssl_info.h" |
| 15 | 16 |
| 16 class CertReportHelper; | 17 class CertReportHelper; |
| 17 class GURL; | 18 class GURL; |
| 18 | 19 |
| 19 namespace security_interstitials { | 20 namespace security_interstitials { |
| 20 class BadClockUI; | 21 class BadClockUI; |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 const base::Time time_triggered_; | 71 const base::Time time_triggered_; |
| 71 scoped_ptr<ChromeControllerClient> controller_; | 72 scoped_ptr<ChromeControllerClient> controller_; |
| 72 | 73 |
| 73 scoped_ptr<security_interstitials::BadClockUI> bad_clock_ui_; | 74 scoped_ptr<security_interstitials::BadClockUI> bad_clock_ui_; |
| 74 scoped_ptr<CertReportHelper> cert_report_helper_; | 75 scoped_ptr<CertReportHelper> cert_report_helper_; |
| 75 | 76 |
| 76 DISALLOW_COPY_AND_ASSIGN(BadClockBlockingPage); | 77 DISALLOW_COPY_AND_ASSIGN(BadClockBlockingPage); |
| 77 }; | 78 }; |
| 78 | 79 |
| 79 #endif // CHROME_BROWSER_SSL_BAD_CLOCK_BLOCKING_PAGE_H_ | 80 #endif // CHROME_BROWSER_SSL_BAD_CLOCK_BLOCKING_PAGE_H_ |
| OLD | NEW |