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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 double frame_rate, | 174 double frame_rate, |
175 blink::WebMediaStreamTrack* track) override; | 175 blink::WebMediaStreamTrack* track) override; |
176 void CreateHTMLVideoElementCapturer( | 176 void CreateHTMLVideoElementCapturer( |
177 blink::WebMediaStream* web_media_stream, | 177 blink::WebMediaStream* web_media_stream, |
178 blink::WebMediaPlayer* web_media_player) override; | 178 blink::WebMediaPlayer* web_media_player) override; |
179 void CreateHTMLAudioElementCapturer( | 179 void CreateHTMLAudioElementCapturer( |
180 blink::WebMediaStream* web_media_stream, | 180 blink::WebMediaStream* web_media_stream, |
181 blink::WebMediaPlayer* web_media_player) override; | 181 blink::WebMediaPlayer* web_media_player) override; |
182 std::unique_ptr<blink::WebImageCaptureFrameGrabber> | 182 std::unique_ptr<blink::WebImageCaptureFrameGrabber> |
183 CreateImageCaptureFrameGrabber() override; | 183 CreateImageCaptureFrameGrabber() override; |
| 184 std::unique_ptr<blink::WebSocketHandshakeThrottle> |
| 185 CreateWebSocketHandshakeThrottle() override; |
184 std::unique_ptr<blink::WebGraphicsContext3DProvider> | 186 std::unique_ptr<blink::WebGraphicsContext3DProvider> |
185 CreateOffscreenGraphicsContext3DProvider( | 187 CreateOffscreenGraphicsContext3DProvider( |
186 const blink::Platform::ContextAttributes& attributes, | 188 const blink::Platform::ContextAttributes& attributes, |
187 const blink::WebURL& top_document_web_url, | 189 const blink::WebURL& top_document_web_url, |
188 blink::WebGraphicsContext3DProvider* share_provider, | 190 blink::WebGraphicsContext3DProvider* share_provider, |
189 blink::Platform::GraphicsInfo* gl_info) override; | 191 blink::Platform::GraphicsInfo* gl_info) override; |
190 std::unique_ptr<blink::WebGraphicsContext3DProvider> | 192 std::unique_ptr<blink::WebGraphicsContext3DProvider> |
191 CreateSharedOffscreenGraphicsContext3DProvider() override; | 193 CreateSharedOffscreenGraphicsContext3DProvider() override; |
192 gpu::GpuMemoryBufferManager* GetGpuMemoryBufferManager() override; | 194 gpu::GpuMemoryBufferManager* GetGpuMemoryBufferManager() override; |
193 std::unique_ptr<cc::SharedBitmap> AllocateSharedBitmap( | 195 std::unique_ptr<cc::SharedBitmap> AllocateSharedBitmap( |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
309 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; | 311 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; |
310 | 312 |
311 PossiblyAssociatedInterfacePtr<mojom::URLLoaderFactory> url_loader_factory_; | 313 PossiblyAssociatedInterfacePtr<mojom::URLLoaderFactory> url_loader_factory_; |
312 | 314 |
313 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 315 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
314 }; | 316 }; |
315 | 317 |
316 } // namespace content | 318 } // namespace content |
317 | 319 |
318 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 320 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
OLD | NEW |