| 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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 blink::WebMediaRecorderHandler* createMediaRecorderHandler() override; | 171 blink::WebMediaRecorderHandler* createMediaRecorderHandler() override; |
| 172 blink::WebMediaStreamCenter* createMediaStreamCenter( | 172 blink::WebMediaStreamCenter* createMediaStreamCenter( |
| 173 blink::WebMediaStreamCenterClient* client) override; | 173 blink::WebMediaStreamCenterClient* client) override; |
| 174 blink::WebCanvasCaptureHandler* createCanvasCaptureHandler( | 174 blink::WebCanvasCaptureHandler* createCanvasCaptureHandler( |
| 175 const blink::WebSize& size, | 175 const blink::WebSize& size, |
| 176 double frame_rate, | 176 double frame_rate, |
| 177 blink::WebMediaStreamTrack* track) override; | 177 blink::WebMediaStreamTrack* track) override; |
| 178 void createHTMLVideoElementCapturer( | 178 void createHTMLVideoElementCapturer( |
| 179 blink::WebMediaStream* web_media_stream, | 179 blink::WebMediaStream* web_media_stream, |
| 180 blink::WebMediaPlayer* web_media_player) override; | 180 blink::WebMediaPlayer* web_media_player) override; |
| 181 void createHTMLAudioElementCapturer( |
| 182 blink::WebMediaStream* web_media_stream, |
| 183 blink::WebMediaPlayer* web_media_player) override; |
| 181 blink::WebImageCaptureFrameGrabber* createImageCaptureFrameGrabber() override; | 184 blink::WebImageCaptureFrameGrabber* createImageCaptureFrameGrabber() override; |
| 182 blink::WebGraphicsContext3DProvider* createOffscreenGraphicsContext3DProvider( | 185 blink::WebGraphicsContext3DProvider* createOffscreenGraphicsContext3DProvider( |
| 183 const blink::Platform::ContextAttributes& attributes, | 186 const blink::Platform::ContextAttributes& attributes, |
| 184 const blink::WebURL& top_document_web_url, | 187 const blink::WebURL& top_document_web_url, |
| 185 blink::WebGraphicsContext3DProvider* share_provider, | 188 blink::WebGraphicsContext3DProvider* share_provider, |
| 186 blink::Platform::GraphicsInfo* gl_info, | 189 blink::Platform::GraphicsInfo* gl_info, |
| 187 blink::Platform::WillBindToCurrentThread) override; | 190 blink::Platform::WillBindToCurrentThread) override; |
| 188 blink::WebGraphicsContext3DProvider* | 191 blink::WebGraphicsContext3DProvider* |
| 189 createSharedOffscreenGraphicsContext3DProvider() override; | 192 createSharedOffscreenGraphicsContext3DProvider() override; |
| 190 blink::WebCompositorSupport* compositorSupport() override; | 193 blink::WebCompositorSupport* compositorSupport() override; |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 std::unique_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; | 316 std::unique_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; |
| 314 | 317 |
| 315 std::unique_ptr<BlinkServiceRegistryImpl> blink_service_registry_; | 318 std::unique_ptr<BlinkServiceRegistryImpl> blink_service_registry_; |
| 316 | 319 |
| 317 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 320 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
| 318 }; | 321 }; |
| 319 | 322 |
| 320 } // namespace content | 323 } // namespace content |
| 321 | 324 |
| 322 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 325 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |