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 17 matching lines...) Expand all Loading... |
28 const WebKit::WebMediaStreamDescriptor& stream, | 28 const WebKit::WebMediaStreamDescriptor& stream, |
29 const WebKit::WebMediaStreamComponent& component) OVERRIDE; | 29 const WebKit::WebMediaStreamComponent& component) OVERRIDE; |
30 | 30 |
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 didCreateMediaStream( |
39 const WebKit::WebMediaStreamDescriptor& stream) OVERRIDE; | 39 WebKit::WebMediaStreamDescriptor& stream) OVERRIDE; |
40 | 40 |
41 virtual WebKit::WebString constructSDP( | 41 virtual WebKit::WebString constructSDP( |
42 const WebKit::WebICECandidateDescriptor& candidate) OVERRIDE; | 42 const WebKit::WebICECandidateDescriptor& candidate) OVERRIDE; |
43 | 43 |
44 virtual WebKit::WebString constructSDP( | 44 virtual WebKit::WebString constructSDP( |
45 const WebKit::WebSessionDescriptionDescriptor& description) OVERRIDE; | 45 const WebKit::WebSessionDescriptionDescriptor& description) OVERRIDE; |
46 | 46 |
47 private: | 47 private: |
48 // Weak pointer, owned by WebKit. | 48 // Weak pointer, owned by WebKit. |
49 WebKit::WebMediaStreamCenterClient* client_; | 49 WebKit::WebMediaStreamCenterClient* client_; |
50 | 50 |
51 DISALLOW_COPY_AND_ASSIGN(MediaStreamCenter); | 51 DISALLOW_COPY_AND_ASSIGN(MediaStreamCenter); |
52 }; | 52 }; |
53 | 53 |
54 } // namespace content | 54 } // namespace content |
55 | 55 |
56 #endif // CONTENT_RENDERER_MEDIA_MEDIA_STREAM_CENTER_H_ | 56 #endif // CONTENT_RENDERER_MEDIA_MEDIA_STREAM_CENTER_H_ |
OLD | NEW |