| 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_CERT_REPORT_HELPER_H_ | 5 #ifndef CHROME_BROWSER_SSL_CERT_REPORT_HELPER_H_ |
| 6 #define CHROME_BROWSER_SSL_CERT_REPORT_HELPER_H_ | 6 #define CHROME_BROWSER_SSL_CERT_REPORT_HELPER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "chrome/browser/interstitials/security_interstitial_page.h" | |
| 12 #include "components/certificate_reporting/error_report.h" | 11 #include "components/certificate_reporting/error_report.h" |
| 13 #include "net/ssl/ssl_info.h" | 12 #include "net/ssl/ssl_info.h" |
| 14 #include "url/gurl.h" | 13 #include "url/gurl.h" |
| 15 | 14 |
| 16 namespace base { | 15 namespace base { |
| 17 class DictionaryValue; | 16 class DictionaryValue; |
| 18 } | 17 } |
| 19 | 18 |
| 20 namespace content { | 19 namespace content { |
| 21 class WebContents; | 20 class WebContents; |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 bool overridable_; | 90 bool overridable_; |
| 92 // The time at which the interstitial was constructed. | 91 // The time at which the interstitial was constructed. |
| 93 const base::Time interstitial_time_; | 92 const base::Time interstitial_time_; |
| 94 // Helpful for recording metrics about cert reports. | 93 // Helpful for recording metrics about cert reports. |
| 95 security_interstitials::MetricsHelper* metrics_helper_; | 94 security_interstitials::MetricsHelper* metrics_helper_; |
| 96 | 95 |
| 97 DISALLOW_COPY_AND_ASSIGN(CertReportHelper); | 96 DISALLOW_COPY_AND_ASSIGN(CertReportHelper); |
| 98 }; | 97 }; |
| 99 | 98 |
| 100 #endif // CHROME_BROWSER_SSL_CERT_REPORT_HELPER_H_ | 99 #endif // CHROME_BROWSER_SSL_CERT_REPORT_HELPER_H_ |
| OLD | NEW |