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; | |
183 blink::WebImageCaptureFrameGrabber* createImageCaptureFrameGrabber() override; | 180 blink::WebImageCaptureFrameGrabber* createImageCaptureFrameGrabber() override; |
184 blink::WebGraphicsContext3DProvider* createOffscreenGraphicsContext3DProvider( | 181 blink::WebGraphicsContext3DProvider* createOffscreenGraphicsContext3DProvider( |
185 const blink::Platform::ContextAttributes& attributes, | 182 const blink::Platform::ContextAttributes& attributes, |
186 const blink::WebURL& top_document_web_url, | 183 const blink::WebURL& top_document_web_url, |
187 blink::WebGraphicsContext3DProvider* share_provider, | 184 blink::WebGraphicsContext3DProvider* share_provider, |
188 blink::Platform::GraphicsInfo* gl_info) override; | 185 blink::Platform::GraphicsInfo* gl_info) override; |
189 blink::WebGraphicsContext3DProvider* | 186 blink::WebGraphicsContext3DProvider* |
190 createSharedOffscreenGraphicsContext3DProvider() override; | 187 createSharedOffscreenGraphicsContext3DProvider() override; |
191 blink::WebCompositorSupport* compositorSupport() override; | 188 blink::WebCompositorSupport* compositorSupport() override; |
192 blink::WebString convertIDNToUnicode(const blink::WebString& host) override; | 189 blink::WebString convertIDNToUnicode(const blink::WebString& host) override; |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
308 std::unique_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; | 305 std::unique_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; |
309 | 306 |
310 std::unique_ptr<BlinkServiceRegistryImpl> blink_service_registry_; | 307 std::unique_ptr<BlinkServiceRegistryImpl> blink_service_registry_; |
311 | 308 |
312 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 309 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
313 }; | 310 }; |
314 | 311 |
315 } // namespace content | 312 } // namespace content |
316 | 313 |
317 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 314 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
OLD | NEW |