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_RENDERER_BLINK_PLATFORM_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 blink::WebMediaRecorderHandler* createMediaRecorderHandler() override; | 170 blink::WebMediaRecorderHandler* createMediaRecorderHandler() override; |
171 blink::WebMediaStreamCenter* createMediaStreamCenter( | 171 blink::WebMediaStreamCenter* createMediaStreamCenter( |
172 blink::WebMediaStreamCenterClient* client) override; | 172 blink::WebMediaStreamCenterClient* client) override; |
173 blink::WebCanvasCaptureHandler* createCanvasCaptureHandler( | 173 blink::WebCanvasCaptureHandler* createCanvasCaptureHandler( |
174 const blink::WebSize& size, | 174 const blink::WebSize& size, |
175 double frame_rate, | 175 double frame_rate, |
176 blink::WebMediaStreamTrack* track) override; | 176 blink::WebMediaStreamTrack* track) override; |
177 void createHTMLVideoElementCapturer( | 177 void createHTMLVideoElementCapturer( |
178 blink::WebMediaStream* web_media_stream, | 178 blink::WebMediaStream* web_media_stream, |
179 blink::WebMediaPlayer* web_media_player) override; | 179 blink::WebMediaPlayer* web_media_player) override; |
| 180 void createHTMLAudioElementCapturer( |
| 181 blink::WebMediaStream* web_media_stream, |
| 182 blink::WebMediaPlayer* web_media_player) override; |
180 blink::WebImageCaptureFrameGrabber* createImageCaptureFrameGrabber() override; | 183 blink::WebImageCaptureFrameGrabber* createImageCaptureFrameGrabber() override; |
181 blink::WebGraphicsContext3DProvider* createOffscreenGraphicsContext3DProvider( | 184 blink::WebGraphicsContext3DProvider* createOffscreenGraphicsContext3DProvider( |
182 const blink::Platform::ContextAttributes& attributes, | 185 const blink::Platform::ContextAttributes& attributes, |
183 const blink::WebURL& top_document_web_url, | 186 const blink::WebURL& top_document_web_url, |
184 blink::WebGraphicsContext3DProvider* share_provider, | 187 blink::WebGraphicsContext3DProvider* share_provider, |
185 blink::Platform::GraphicsInfo* gl_info) override; | 188 blink::Platform::GraphicsInfo* gl_info) override; |
186 blink::WebGraphicsContext3DProvider* | 189 blink::WebGraphicsContext3DProvider* |
187 createSharedOffscreenGraphicsContext3DProvider() override; | 190 createSharedOffscreenGraphicsContext3DProvider() override; |
188 blink::WebCompositorSupport* compositorSupport() override; | 191 blink::WebCompositorSupport* compositorSupport() override; |
189 blink::WebString convertIDNToUnicode(const blink::WebString& host) override; | 192 blink::WebString convertIDNToUnicode(const blink::WebString& host) override; |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
305 std::unique_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; | 308 std::unique_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; |
306 | 309 |
307 std::unique_ptr<BlinkServiceRegistryImpl> blink_service_registry_; | 310 std::unique_ptr<BlinkServiceRegistryImpl> blink_service_registry_; |
308 | 311 |
309 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 312 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
310 }; | 313 }; |
311 | 314 |
312 } // namespace content | 315 } // namespace content |
313 | 316 |
314 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 317 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
OLD | NEW |