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_WEBKITPLATFORMSUPPORT_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "base/platform_file.h" | 10 #include "base/platform_file.h" |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 | 113 |
114 virtual blink::WebAudioDevice* createAudioDevice( | 114 virtual blink::WebAudioDevice* createAudioDevice( |
115 size_t buffer_size, unsigned input_channels, unsigned channels, | 115 size_t buffer_size, unsigned input_channels, unsigned channels, |
116 double sample_rate, blink::WebAudioDevice::RenderCallback* callback, | 116 double sample_rate, blink::WebAudioDevice::RenderCallback* callback, |
117 const blink::WebString& input_device_id); | 117 const blink::WebString& input_device_id); |
118 | 118 |
119 virtual bool loadAudioResource( | 119 virtual bool loadAudioResource( |
120 blink::WebAudioBus* destination_bus, const char* audio_file_data, | 120 blink::WebAudioBus* destination_bus, const char* audio_file_data, |
121 size_t data_size); | 121 size_t data_size); |
122 | 122 |
123 virtual blink::WebContentDecryptionModule* createContentDecryptionModule( | |
124 const blink::WebString& key_system); | |
125 virtual blink::WebMIDIAccessor* | 123 virtual blink::WebMIDIAccessor* |
126 createMIDIAccessor(blink::WebMIDIAccessorClient* client); | 124 createMIDIAccessor(blink::WebMIDIAccessorClient* client); |
127 | 125 |
128 virtual blink::WebBlobRegistry* blobRegistry(); | 126 virtual blink::WebBlobRegistry* blobRegistry(); |
129 virtual void sampleGamepads(blink::WebGamepads&) OVERRIDE; | 127 virtual void sampleGamepads(blink::WebGamepads&) OVERRIDE; |
130 virtual void setGamepadListener(blink::WebGamepadListener*) OVERRIDE; | 128 virtual void setGamepadListener(blink::WebGamepadListener*) OVERRIDE; |
131 virtual blink::WebRTCPeerConnectionHandler* createRTCPeerConnectionHandler( | 129 virtual blink::WebRTCPeerConnectionHandler* createRTCPeerConnectionHandler( |
132 blink::WebRTCPeerConnectionHandlerClient* client); | 130 blink::WebRTCPeerConnectionHandlerClient* client); |
133 virtual blink::WebMediaStreamCenter* createMediaStreamCenter( | 131 virtual blink::WebMediaStreamCenter* createMediaStreamCenter( |
134 blink::WebMediaStreamCenterClient* client); | 132 blink::WebMediaStreamCenterClient* client); |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
239 scoped_ptr<ScreenOrientationDispatcher> screen_orientation_dispatcher_; | 237 scoped_ptr<ScreenOrientationDispatcher> screen_orientation_dispatcher_; |
240 | 238 |
241 scoped_ptr<blink::WebScrollbarBehavior> web_scrollbar_behavior_; | 239 scoped_ptr<blink::WebScrollbarBehavior> web_scrollbar_behavior_; |
242 | 240 |
243 DISALLOW_COPY_AND_ASSIGN(RendererWebKitPlatformSupportImpl); | 241 DISALLOW_COPY_AND_ASSIGN(RendererWebKitPlatformSupportImpl); |
244 }; | 242 }; |
245 | 243 |
246 } // namespace content | 244 } // namespace content |
247 | 245 |
248 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 246 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
OLD | NEW |