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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 blink::WebMediaRecorderHandler* createMediaRecorderHandler() override; | 165 blink::WebMediaRecorderHandler* createMediaRecorderHandler() override; |
166 blink::WebMediaStreamCenter* createMediaStreamCenter( | 166 blink::WebMediaStreamCenter* createMediaStreamCenter( |
167 blink::WebMediaStreamCenterClient* client) override; | 167 blink::WebMediaStreamCenterClient* client) override; |
168 blink::WebCanvasCaptureHandler* createCanvasCaptureHandler( | 168 blink::WebCanvasCaptureHandler* createCanvasCaptureHandler( |
169 const blink::WebSize& size, | 169 const blink::WebSize& size, |
170 double frame_rate, | 170 double frame_rate, |
171 blink::WebMediaStreamTrack* track) override; | 171 blink::WebMediaStreamTrack* track) override; |
172 void createHTMLVideoElementCapturer( | 172 void createHTMLVideoElementCapturer( |
173 blink::WebMediaStream* web_media_stream, | 173 blink::WebMediaStream* web_media_stream, |
174 blink::WebMediaPlayer* web_media_player) override; | 174 blink::WebMediaPlayer* web_media_player) override; |
| 175 blink::WebImageCaptureFrameGrabber* createImageCaptureFrameGrabber() override; |
175 blink::WebGraphicsContext3DProvider* createOffscreenGraphicsContext3DProvider( | 176 blink::WebGraphicsContext3DProvider* createOffscreenGraphicsContext3DProvider( |
176 const blink::Platform::ContextAttributes& attributes, | 177 const blink::Platform::ContextAttributes& attributes, |
177 const blink::WebURL& top_document_web_url, | 178 const blink::WebURL& top_document_web_url, |
178 blink::WebGraphicsContext3DProvider* share_provider, | 179 blink::WebGraphicsContext3DProvider* share_provider, |
179 blink::Platform::GraphicsInfo* gl_info) override; | 180 blink::Platform::GraphicsInfo* gl_info) override; |
180 blink::WebGraphicsContext3DProvider* | 181 blink::WebGraphicsContext3DProvider* |
181 createSharedOffscreenGraphicsContext3DProvider() override; | 182 createSharedOffscreenGraphicsContext3DProvider() override; |
182 blink::WebCompositorSupport* compositorSupport() override; | 183 blink::WebCompositorSupport* compositorSupport() override; |
183 blink::WebString convertIDNToUnicode(const blink::WebString& host) override; | 184 blink::WebString convertIDNToUnicode(const blink::WebString& host) override; |
184 blink::ServiceRegistry* serviceRegistry() override; | 185 blink::ServiceRegistry* serviceRegistry() override; |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
304 std::unique_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; | 305 std::unique_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; |
305 | 306 |
306 std::unique_ptr<BlinkServiceRegistryImpl> blink_service_registry_; | 307 std::unique_ptr<BlinkServiceRegistryImpl> blink_service_registry_; |
307 | 308 |
308 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 309 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
309 }; | 310 }; |
310 | 311 |
311 } // namespace content | 312 } // namespace content |
312 | 313 |
313 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 314 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
OLD | NEW |