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

Side by Side Diff: chrome/browser/chromeos/net/cert_verify_proc_chromeos.h

Issue 623293003: replace OVERRIDE and FINAL with override and final in chrome/browser/chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: run git cl format on echo_dialog_view.h Created 6 years, 2 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_CHROMEOS_NET_CERT_VERIFY_PROC_CHROMEOS_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_NET_CERT_VERIFY_PROC_CHROMEOS_H_
6 #define CHROME_BROWSER_CHROMEOS_NET_CERT_VERIFY_PROC_CHROMEOS_H_ 6 #define CHROME_BROWSER_CHROMEOS_NET_CERT_VERIFY_PROC_CHROMEOS_H_
7 7
8 #include "crypto/scoped_nss_types.h" 8 #include "crypto/scoped_nss_types.h"
9 #include "net/cert/cert_verify_proc_nss.h" 9 #include "net/cert/cert_verify_proc_nss.h"
10 #include "net/cert/nss_profile_filter_chromeos.h" 10 #include "net/cert/nss_profile_filter_chromeos.h"
(...skipping 20 matching lines...) Expand all
31 virtual ~CertVerifyProcChromeOS(); 31 virtual ~CertVerifyProcChromeOS();
32 32
33 private: 33 private:
34 // net::CertVerifyProcNSS implementation: 34 // net::CertVerifyProcNSS implementation:
35 virtual int VerifyInternal( 35 virtual int VerifyInternal(
36 net::X509Certificate* cert, 36 net::X509Certificate* cert,
37 const std::string& hostname, 37 const std::string& hostname,
38 int flags, 38 int flags,
39 net::CRLSet* crl_set, 39 net::CRLSet* crl_set,
40 const net::CertificateList& additional_trust_anchors, 40 const net::CertificateList& additional_trust_anchors,
41 net::CertVerifyResult* verify_result) OVERRIDE; 41 net::CertVerifyResult* verify_result) override;
42 42
43 // Check if the trust root of |current_chain| is allowed. 43 // Check if the trust root of |current_chain| is allowed.
44 // |is_chain_valid_arg| is actually a ChainVerifyArgs*, which is used to pass 44 // |is_chain_valid_arg| is actually a ChainVerifyArgs*, which is used to pass
45 // state through the NSS CERTChainVerifyCallback.isChainValidArg parameter. 45 // state through the NSS CERTChainVerifyCallback.isChainValidArg parameter.
46 // If the chain is allowed, |*chain_ok| will be set to PR_TRUE. 46 // If the chain is allowed, |*chain_ok| will be set to PR_TRUE.
47 // If the chain is not allowed, |*chain_ok| is set to PR_FALSE, and this 47 // If the chain is not allowed, |*chain_ok| is set to PR_FALSE, and this
48 // function may be called again during a single certificate verification if 48 // function may be called again during a single certificate verification if
49 // there are multiple possible valid chains. 49 // there are multiple possible valid chains.
50 static SECStatus IsChainValidFunc(void* is_chain_valid_arg, 50 static SECStatus IsChainValidFunc(void* is_chain_valid_arg,
51 const CERTCertList* current_chain, 51 const CERTCertList* current_chain,
52 PRBool* chain_ok); 52 PRBool* chain_ok);
53 53
54 net::NSSProfileFilterChromeOS profile_filter_; 54 net::NSSProfileFilterChromeOS profile_filter_;
55 }; 55 };
56 56
57 } // namespace chromeos 57 } // namespace chromeos
58 58
59 #endif // CHROME_BROWSER_CHROMEOS_NET_CERT_VERIFY_PROC_CHROMEOS_H_ 59 #endif // CHROME_BROWSER_CHROMEOS_NET_CERT_VERIFY_PROC_CHROMEOS_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/mobile_config.h ('k') | chrome/browser/chromeos/net/cert_verify_proc_chromeos_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698