| 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 "chrome/browser/interstitials/security_interstitial_page.h" | 11 #include "chrome/browser/interstitials/security_interstitial_page.h" |
| 11 #include "components/certificate_reporting/error_report.h" | 12 #include "components/certificate_reporting/error_report.h" |
| 12 #include "net/ssl/ssl_info.h" | 13 #include "net/ssl/ssl_info.h" |
| 13 #include "url/gurl.h" | 14 #include "url/gurl.h" |
| 14 | 15 |
| 15 namespace base { | 16 namespace base { |
| 16 class DictionaryValue; | 17 class DictionaryValue; |
| 17 } | 18 } |
| 18 | 19 |
| 19 namespace content { | 20 namespace content { |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 // True if the user was given the option to proceed through the | 88 // True if the user was given the option to proceed through the |
| 88 // certificate chain error being reported. | 89 // certificate chain error being reported. |
| 89 bool overridable_; | 90 bool overridable_; |
| 90 // Helpful for recording metrics about cert reports. | 91 // Helpful for recording metrics about cert reports. |
| 91 security_interstitials::MetricsHelper* metrics_helper_; | 92 security_interstitials::MetricsHelper* metrics_helper_; |
| 92 | 93 |
| 93 DISALLOW_COPY_AND_ASSIGN(CertReportHelper); | 94 DISALLOW_COPY_AND_ASSIGN(CertReportHelper); |
| 94 }; | 95 }; |
| 95 | 96 |
| 96 #endif // CHROME_BROWSER_SSL_CERT_REPORT_HELPER_H_ | 97 #endif // CHROME_BROWSER_SSL_CERT_REPORT_HELPER_H_ |
| OLD | NEW |