Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(380)

Side by Side Diff: talk/app/webrtc/peerconnectionfactoryproxy.h

Issue 1176383004: DtlsIdentityStore[Interface/Impl] updated, DtlsIdentityService to be removed (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Del old requestobserver & service interface (forgot), made global common_name_ const char* Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * libjingle 2 * libjingle
3 * Copyright 2014 Google Inc. 3 * Copyright 2014 Google Inc.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met: 6 * modification, are permitted provided that the following conditions are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright notice, 8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer. 9 * this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright notice, 10 * 2. Redistributions in binary form must reproduce the above copyright notice,
(...skipping 24 matching lines...) Expand all
35 35
36 namespace webrtc { 36 namespace webrtc {
37 37
38 BEGIN_PROXY_MAP(PeerConnectionFactory) 38 BEGIN_PROXY_MAP(PeerConnectionFactory)
39 PROXY_METHOD1(void, SetOptions, const Options&) 39 PROXY_METHOD1(void, SetOptions, const Options&)
40 PROXY_METHOD5(rtc::scoped_refptr<PeerConnectionInterface>, 40 PROXY_METHOD5(rtc::scoped_refptr<PeerConnectionInterface>,
41 CreatePeerConnection, 41 CreatePeerConnection,
42 const PeerConnectionInterface::RTCConfiguration&, 42 const PeerConnectionInterface::RTCConfiguration&,
43 const MediaConstraintsInterface*, 43 const MediaConstraintsInterface*,
44 PortAllocatorFactoryInterface*, 44 PortAllocatorFactoryInterface*,
45 DTLSIdentityServiceInterface*, 45 DtlsIdentityStoreInterface*,
46 PeerConnectionObserver*) 46 PeerConnectionObserver*)
47 PROXY_METHOD1(rtc::scoped_refptr<MediaStreamInterface>, 47 PROXY_METHOD1(rtc::scoped_refptr<MediaStreamInterface>,
48 CreateLocalMediaStream, const std::string&) 48 CreateLocalMediaStream, const std::string&)
49 PROXY_METHOD1(rtc::scoped_refptr<AudioSourceInterface>, 49 PROXY_METHOD1(rtc::scoped_refptr<AudioSourceInterface>,
50 CreateAudioSource, const MediaConstraintsInterface*) 50 CreateAudioSource, const MediaConstraintsInterface*)
51 PROXY_METHOD2(rtc::scoped_refptr<VideoSourceInterface>, 51 PROXY_METHOD2(rtc::scoped_refptr<VideoSourceInterface>,
52 CreateVideoSource, cricket::VideoCapturer*, 52 CreateVideoSource, cricket::VideoCapturer*,
53 const MediaConstraintsInterface*) 53 const MediaConstraintsInterface*)
54 PROXY_METHOD2(rtc::scoped_refptr<VideoTrackInterface>, 54 PROXY_METHOD2(rtc::scoped_refptr<VideoTrackInterface>,
55 CreateVideoTrack, const std::string&, VideoSourceInterface*) 55 CreateVideoTrack, const std::string&, VideoSourceInterface*)
56 PROXY_METHOD2(rtc::scoped_refptr<AudioTrackInterface>, 56 PROXY_METHOD2(rtc::scoped_refptr<AudioTrackInterface>,
57 CreateAudioTrack, const std::string&, AudioSourceInterface*) 57 CreateAudioTrack, const std::string&, AudioSourceInterface*)
58 PROXY_METHOD1(bool, StartAecDump, rtc::PlatformFile) 58 PROXY_METHOD1(bool, StartAecDump, rtc::PlatformFile)
59 END_PROXY() 59 END_PROXY()
60 60
61 } // namespace webrtc 61 } // namespace webrtc
62 62
63 #endif // TALK_APP_WEBRTC_PEERCONNECTIONFACTORYPROXY_H_ 63 #endif // TALK_APP_WEBRTC_PEERCONNECTIONFACTORYPROXY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698