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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 const blink::WebString& input_device_id, | 155 const blink::WebString& input_device_id, |
156 const blink::WebSecurityOrigin& security_origin) override; | 156 const blink::WebSecurityOrigin& security_origin) override; |
157 | 157 |
158 bool loadAudioResource(blink::WebAudioBus* destination_bus, | 158 bool loadAudioResource(blink::WebAudioBus* destination_bus, |
159 const char* audio_file_data, | 159 const char* audio_file_data, |
160 size_t data_size) override; | 160 size_t data_size) override; |
161 | 161 |
162 blink::WebMIDIAccessor* createMIDIAccessor( | 162 blink::WebMIDIAccessor* createMIDIAccessor( |
163 blink::WebMIDIAccessorClient* client) override; | 163 blink::WebMIDIAccessorClient* client) override; |
164 | 164 |
165 blink::WebBlobRegistry* blobRegistry() override; | 165 blink::WebBlobRegistry* getBlobRegistry() override; |
166 void sampleGamepads(blink::WebGamepads&) override; | 166 void sampleGamepads(blink::WebGamepads&) override; |
167 blink::WebRTCPeerConnectionHandler* createRTCPeerConnectionHandler( | 167 blink::WebRTCPeerConnectionHandler* createRTCPeerConnectionHandler( |
168 blink::WebRTCPeerConnectionHandlerClient* client) override; | 168 blink::WebRTCPeerConnectionHandlerClient* client) override; |
169 blink::WebRTCCertificateGenerator* createRTCCertificateGenerator() override; | 169 blink::WebRTCCertificateGenerator* createRTCCertificateGenerator() override; |
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, |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
308 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; | 308 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; |
309 | 309 |
310 mojom::URLLoaderFactoryPtr url_loader_factory_; | 310 mojom::URLLoaderFactoryPtr url_loader_factory_; |
311 | 311 |
312 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 312 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
313 }; | 313 }; |
314 | 314 |
315 } // namespace content | 315 } // namespace content |
316 | 316 |
317 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 317 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
OLD | NEW |