blob: 46dfbb0a8827c511e5fd665554ae898495dad657 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
// Copyright (c) 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_RENDERER_MEDIA_RTC_CERTIFICATE_GENERATOR_H_
#define CONTENT_RENDERER_MEDIA_RTC_CERTIFICATE_GENERATOR_H_
#include "base/macros.h"
#include "third_party/WebKit/public/platform/WebRTCCertificate.h"
#include "third_party/WebKit/public/platform/WebRTCCertificateGenerator.h"
#include "third_party/WebKit/public/platform/WebRTCKeyParams.h"
namespace content {
// Chromium's WebRTCCertificateGenerator implementation; uses the
// PeerConnectionIdentityStore/SSLIdentity::Generate to generate the identity,
// rtc::RTCCertificate and content::RTCCertificate.
class RTCCertificateGenerator : public blink::WebRTCCertificateGenerator {
public:
RTCCertificateGenerator() {}
~RTCCertificateGenerator() override {}
// blink::WebRTCCertificateGenerator implementation.
void generateCertificate(
const blink::WebRTCKeyParams& key_params,
const blink::WebURL& url,
const blink::WebURL& first_party_for_cookies,
blink::WebCallbacks<blink::WebRTCCertificate*, void>* observer) override;
bool isSupportedKeyParams(const blink::WebRTCKeyParams& key_params) override;
private:
DISALLOW_COPY_AND_ASSIGN(RTCCertificateGenerator);
};
} // namespace content
#endif // CONTENT_RENDERER_MEDIA_RTC_CERTIFICATE_GENERATOR_H_
|