| Index: net/ocsp/nss_ocsp_unittest.cc
|
| diff --git a/net/ocsp/nss_ocsp_unittest.cc b/net/ocsp/nss_ocsp_unittest.cc
|
| index 0530282f4a67a1f2ea31fc3764ef80cbfa332ba0..5f07ce92329fa419e548363a25ed2c367e4bb384 100644
|
| --- a/net/ocsp/nss_ocsp_unittest.cc
|
| +++ b/net/ocsp/nss_ocsp_unittest.cc
|
| @@ -35,9 +35,10 @@ namespace {
|
| const char kAiaHost[] = "aia-test.invalid";
|
| // Returning a single DER-encoded cert, so the mime-type must be
|
| // application/pkix-cert per RFC 5280.
|
| -const char kAiaHeaders[] = "HTTP/1.1 200 OK\0"
|
| - "Content-type: application/pkix-cert\0"
|
| - "\0";
|
| +const char kAiaHeaders[] =
|
| + "HTTP/1.1 200 OK\0"
|
| + "Content-type: application/pkix-cert\0"
|
| + "\0";
|
|
|
| class AiaResponseHandler : public net::URLRequestJobFactory::ProtocolHandler {
|
| public:
|
| @@ -105,13 +106,9 @@ class NssHttpTest : public ::testing::Test {
|
| URLRequestFilter::GetInstance()->RemoveHostnameHandler("http", kAiaHost);
|
| }
|
|
|
| - CertVerifier* verifier() const {
|
| - return verifier_.get();
|
| - }
|
| + CertVerifier* verifier() const { return verifier_.get(); }
|
|
|
| - int request_count() const {
|
| - return handler_->request_count();
|
| - }
|
| + int request_count() const { return handler_->request_count(); }
|
|
|
| protected:
|
| const CertificateList empty_cert_list_;
|
|
|