HomeSort by relevance Sort by last modified time
    Searched defs:SSLCertChain (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/libjingle/source/talk/base/
sslidentity.h 43 class SSLCertChain;
71 virtual bool GetChain(SSLCertChain** chain) const = 0;
90 // SSLCertChain is a simple wrapper for a vector of SSLCertificates. It serves
93 class SSLCertChain {
97 explicit SSLCertChain(const std::vector<SSLCertificate*>& certs) {
102 explicit SSLCertChain(const SSLCertificate* cert) {
106 ~SSLCertChain() {
116 // Returns a new SSLCertChain object instance wrapping the same underlying
118 SSLCertChain* Copy() const {
119 return new SSLCertChain(certs_)
    [all...]
  /external/chromium_org/third_party/webrtc/base/
sslidentity.h 26 class SSLCertChain;
54 virtual bool GetChain(SSLCertChain** chain) const = 0;
73 // SSLCertChain is a simple wrapper for a vector of SSLCertificates. It serves
76 class SSLCertChain {
80 explicit SSLCertChain(const std::vector<SSLCertificate*>& certs) {
85 explicit SSLCertChain(const SSLCertificate* cert) {
89 ~SSLCertChain() {
99 // Returns a new SSLCertChain object instance wrapping the same underlying
101 SSLCertChain* Copy() const {
102 return new SSLCertChain(certs_)
    [all...]

Completed in 74 milliseconds