OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:RTCCertificate
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/webrtc/base/
rtccertificate.cc
11
#include "webrtc/base/
rtccertificate
.h"
17
scoped_refptr<
RTCCertificate
>
RTCCertificate
::Create(
19
return new RefCountedObject<
RTCCertificate
>(identity.release());
22
RTCCertificate
::
RTCCertificate
(SSLIdentity* identity)
27
RTCCertificate
::~
RTCCertificate
() {
30
uint64_t
RTCCertificate
::Expires() const {
38
bool
RTCCertificate
::HasExpired(uint64_t now) const
[
all
...]
rtccertificate.h
25
class
RTCCertificate
: public RefCountInterface {
28
static scoped_refptr<
RTCCertificate
> Create(scoped_ptr<SSLIdentity> identity);
37
// TODO(hbos): If possible, remove once
RTCCertificate
and its
44
explicit
RTCCertificate
(SSLIdentity* identity);
45
~
RTCCertificate
() override;
Completed in 56 milliseconds