// Copyright 2013 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_PEER_CONNECTION_IDENTITY_SERVICE_H_ #define CONTENT_RENDERER_MEDIA_PEER_CONNECTION_IDENTITY_SERVICE_H_ #include #include #include "base/basictypes.h" #include "base/single_thread_task_runner.h" #include "base/threading/thread_checker.h" #include "content/public/renderer/render_process_observer.h" #include "third_party/libjingle/source/talk/app/webrtc/peerconnectioninterface.h" #include "url/gurl.h" namespace content { // This class is associated with a peer connection and handles WebRTC DTLS // identity requests by delegating to the per-renderer WebRTCIdentityProxy. class PeerConnectionIdentityService : public webrtc::DTLSIdentityServiceInterface { public: explicit PeerConnectionIdentityService(const GURL& origin); ~PeerConnectionIdentityService() override; // webrtc::DTLSIdentityServiceInterface implementation. bool RequestIdentity(const std::string& identity_name, const std::string& common_name, webrtc::DTLSIdentityRequestObserver* observer) override; private: base::ThreadChecker signaling_thread_; const scoped_refptr main_thread_; // The origin of the DTLS connection. const GURL origin_; DISALLOW_COPY_AND_ASSIGN(PeerConnectionIdentityService); }; } // namespace content #endif // CONTENT_RENDERER_MEDIA_PEER_CONNECTION_IDENTITY_SERVICE_H_