Compute if a layer is clipped outside CalcDrawProps
[chromium-blink-merge.git] / net / cert / cert_verify_proc_android.h
blob755ce80ae6a684cca289648f0aa73d2b40b431c2
1 // Copyright (c) 2012 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.
5 #ifndef NET_CERT_CERT_VERIFY_PROC_ANDROID_H_
6 #define NET_CERT_CERT_VERIFY_PROC_ANDROID_H_
8 #include "net/cert/cert_verify_proc.h"
10 namespace net {
12 // Performs certificate verification on Android by calling the platform
13 // TrustManager through JNI.
14 class CertVerifyProcAndroid : public CertVerifyProc {
15 public:
16 CertVerifyProcAndroid();
18 bool SupportsAdditionalTrustAnchors() const override;
19 bool SupportsOCSPStapling() const override;
21 protected:
22 ~CertVerifyProcAndroid() override;
24 private:
25 int VerifyInternal(X509Certificate* cert,
26 const std::string& hostname,
27 const std::string& ocsp_response,
28 int flags,
29 CRLSet* crl_set,
30 const CertificateList& additional_trust_anchors,
31 CertVerifyResult* verify_result) override;
34 } // namespace net
36 #endif // NET_CERT_CERT_VERIFY_PROC_ANDROID_H_