Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(197)

Side by Side Diff: chrome/browser/ssl/ssl_cert_reporter.h

Issue 2530053003: chrome: Cleanup class/struct forward declarations (Closed)
Patch Set: Rebase + address comment Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_SSL_CERT_REPORTER_H_ 5 #ifndef CHROME_BROWSER_SSL_SSL_CERT_REPORTER_H_
6 #define CHROME_BROWSER_SSL_SSL_CERT_REPORTER_H_ 6 #define CHROME_BROWSER_SSL_SSL_CERT_REPORTER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 namespace net {
11 class SSLInfo;
12 } // namespace net
13
14 // An interface used by interstitial pages to send reports of invalid 10 // An interface used by interstitial pages to send reports of invalid
15 // certificate chains. 11 // certificate chains.
16 class SSLCertReporter { 12 class SSLCertReporter {
17 public: 13 public:
18 virtual ~SSLCertReporter() {} 14 virtual ~SSLCertReporter() {}
19 15
20 // Sends a serialized certificate report to the report collection 16 // Sends a serialized certificate report to the report collection
21 // endpoint. 17 // endpoint.
22 virtual void ReportInvalidCertificateChain( 18 virtual void ReportInvalidCertificateChain(
23 const std::string& serialized_report) = 0; 19 const std::string& serialized_report) = 0;
24 }; 20 };
25 21
26 #endif // CHROME_BROWSER_SSL_SSL_CERT_REPORTER_H_ 22 #endif // CHROME_BROWSER_SSL_SSL_CERT_REPORTER_H_
OLDNEW
« no previous file with comments | « chrome/browser/ssl/ssl_blocking_page.h ('k') | chrome/browser/ssl/ssl_client_auth_requestor_mock.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698