OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_RENDERER_MEDIA_MEDIA_STREAM_CENTER_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_MEDIA_STREAM_CENTER_H_ |
6 #define CONTENT_RENDERER_MEDIA_MEDIA_STREAM_CENTER_H_ | 6 #define CONTENT_RENDERER_MEDIA_MEDIA_STREAM_CENTER_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
(...skipping 20 matching lines...) Expand all Loading... |
31 virtual void didDisableMediaStreamTrack( | 31 virtual void didDisableMediaStreamTrack( |
32 const WebKit::WebMediaStreamDescriptor& stream, | 32 const WebKit::WebMediaStreamDescriptor& stream, |
33 const WebKit::WebMediaStreamComponent& component) OVERRIDE; | 33 const WebKit::WebMediaStreamComponent& component) OVERRIDE; |
34 | 34 |
35 virtual void didStopLocalMediaStream( | 35 virtual void didStopLocalMediaStream( |
36 const WebKit::WebMediaStreamDescriptor& stream) OVERRIDE; | 36 const WebKit::WebMediaStreamDescriptor& stream) OVERRIDE; |
37 | 37 |
38 virtual void didConstructMediaStream( | 38 virtual void didConstructMediaStream( |
39 const WebKit::WebMediaStreamDescriptor& stream) OVERRIDE; | 39 const WebKit::WebMediaStreamDescriptor& stream) OVERRIDE; |
40 | 40 |
| 41 virtual WebKit::WebString constructSDP( |
| 42 const WebKit::WebICECandidateDescriptor& candidate) OVERRIDE; |
| 43 |
| 44 virtual WebKit::WebString constructSDP( |
| 45 const WebKit::WebSessionDescriptionDescriptor& description) OVERRIDE; |
| 46 |
41 private: | 47 private: |
42 // Weak pointer, owned by WebKit. | 48 // Weak pointer, owned by WebKit. |
43 WebKit::WebMediaStreamCenterClient* client_; | 49 WebKit::WebMediaStreamCenterClient* client_; |
44 | 50 |
45 DISALLOW_COPY_AND_ASSIGN(MediaStreamCenter); | 51 DISALLOW_COPY_AND_ASSIGN(MediaStreamCenter); |
46 }; | 52 }; |
47 | 53 |
48 } // namespace content | 54 } // namespace content |
49 | 55 |
50 #endif // CONTENT_RENDERER_MEDIA_MEDIA_STREAM_CENTER_H_ | 56 #endif // CONTENT_RENDERER_MEDIA_MEDIA_STREAM_CENTER_H_ |
OLD | NEW |