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

Side by Side Diff: third_party/WebKit/public/platform/WebRTCPeerConnectionHandler.h

Issue 2415673003: Merge RTCConfiguration into WebRTCConfiguration (Closed)
Patch Set: headers, kConstants Created 4 years, 2 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
« no previous file with comments | « third_party/WebKit/public/platform/WebRTCConfiguration.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 21 matching lines...) Expand all
32 #define WebRTCPeerConnectionHandler_h 32 #define WebRTCPeerConnectionHandler_h
33 33
34 #include "WebRTCStats.h" 34 #include "WebRTCStats.h"
35 35
36 namespace blink { 36 namespace blink {
37 37
38 class WebMediaConstraints; 38 class WebMediaConstraints;
39 class WebMediaStream; 39 class WebMediaStream;
40 class WebMediaStreamTrack; 40 class WebMediaStreamTrack;
41 class WebRTCAnswerOptions; 41 class WebRTCAnswerOptions;
42 class WebRTCConfiguration;
43 class WebRTCDTMFSenderHandler; 42 class WebRTCDTMFSenderHandler;
44 class WebRTCDataChannelHandler; 43 class WebRTCDataChannelHandler;
45 class WebRTCICECandidate; 44 class WebRTCICECandidate;
46 class WebRTCOfferOptions; 45 class WebRTCOfferOptions;
47 class WebRTCSessionDescription; 46 class WebRTCSessionDescription;
48 class WebRTCSessionDescriptionRequest; 47 class WebRTCSessionDescriptionRequest;
49 class WebRTCStatsRequest; 48 class WebRTCStatsRequest;
50 class WebRTCVoidRequest; 49 class WebRTCVoidRequest;
51 class WebString; 50 class WebString;
51 struct WebRTCConfiguration;
52 struct WebRTCDataChannelInit; 52 struct WebRTCDataChannelInit;
53 53
54 // Used to back histogram value of 54 // Used to back histogram value of
55 // "WebRTC.PeerConnection.SelectedRtcpMuxPolicy", so treat as append-only. 55 // "WebRTC.PeerConnection.SelectedRtcpMuxPolicy", so treat as append-only.
56 enum RtcpMuxPolicy { 56 enum RtcpMuxPolicy {
57 RtcpMuxPolicyRequire, 57 RtcpMuxPolicyRequire,
58 RtcpMuxPolicyNegotiate, 58 RtcpMuxPolicyNegotiate,
59 RtcpMuxPolicyDefault, 59 RtcpMuxPolicyDefault,
60 RtcpMuxPolicyMax 60 RtcpMuxPolicyMax
61 }; 61 };
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 const WebString& label, 102 const WebString& label,
103 const WebRTCDataChannelInit&) = 0; 103 const WebRTCDataChannelInit&) = 0;
104 virtual WebRTCDTMFSenderHandler* createDTMFSender( 104 virtual WebRTCDTMFSenderHandler* createDTMFSender(
105 const WebMediaStreamTrack&) = 0; 105 const WebMediaStreamTrack&) = 0;
106 virtual void stop() = 0; 106 virtual void stop() = 0;
107 }; 107 };
108 108
109 } // namespace blink 109 } // namespace blink
110 110
111 #endif // WebRTCPeerConnectionHandler_h 111 #endif // WebRTCPeerConnectionHandler_h
OLDNEW
« no previous file with comments | « third_party/WebKit/public/platform/WebRTCConfiguration.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698