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

Side by Side Diff: net/cert/ocsp_verify_result.cc

Issue 2040513003: Implement Expect-Staple (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move OCSP into cert_verify_proc Created 4 years, 5 months 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
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "net/cert/ocsp_verify_result.h"
6
7 namespace net {
8
9 OCSPVerifyResult::OCSPVerifyResult()
10 : response_status(OCSPVerifyResult::MISSING) {}
11
12 OCSPVerifyResult::OCSPVerifyResult(const OCSPVerifyResult&) = default;
13
14 OCSPVerifyResult::~OCSPVerifyResult() {}
15
16 void OCSPVerifyResult::Reset() {
svaldez 2016/06/23 14:03:15 Clear stapled_response?
17 response_status = MISSING;
18 cert_status = base::nullopt;
19 }
20
21 } // namespace net
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698