| 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, | 188 blink::Platform::GraphicsInfo* gl_info, |
| 186 blink::Platform::WillBindToCurrentThread) override; | 189 blink::Platform::WillBindToCurrentThread) override; |
| 187 blink::WebGraphicsContext3DProvider* | 190 blink::WebGraphicsContext3DProvider* |
| 188 createSharedOffscreenGraphicsContext3DProvider() override; | 191 createSharedOffscreenGraphicsContext3DProvider() override; |
| 189 blink::WebCompositorSupport* compositorSupport() override; | 192 blink::WebCompositorSupport* compositorSupport() override; |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 std::unique_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; | 309 std::unique_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; |
| 307 | 310 |
| 308 std::unique_ptr<BlinkServiceRegistryImpl> blink_service_registry_; | 311 std::unique_ptr<BlinkServiceRegistryImpl> blink_service_registry_; |
| 309 | 312 |
| 310 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 313 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
| 311 }; | 314 }; |
| 312 | 315 |
| 313 } // namespace content | 316 } // namespace content |
| 314 | 317 |
| 315 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 318 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |