| 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 "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/id_map.h" | 9 #include "base/id_map.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 blink::WebAudioBus* destination_bus, const char* audio_file_data, | 127 blink::WebAudioBus* destination_bus, const char* audio_file_data, |
| 128 size_t data_size); | 128 size_t data_size); |
| 129 | 129 |
| 130 virtual blink::WebMIDIAccessor* | 130 virtual blink::WebMIDIAccessor* |
| 131 createMIDIAccessor(blink::WebMIDIAccessorClient* client); | 131 createMIDIAccessor(blink::WebMIDIAccessorClient* client); |
| 132 | 132 |
| 133 virtual blink::WebBlobRegistry* blobRegistry(); | 133 virtual blink::WebBlobRegistry* blobRegistry(); |
| 134 virtual void sampleGamepads(blink::WebGamepads&); | 134 virtual void sampleGamepads(blink::WebGamepads&); |
| 135 virtual blink::WebRTCPeerConnectionHandler* createRTCPeerConnectionHandler( | 135 virtual blink::WebRTCPeerConnectionHandler* createRTCPeerConnectionHandler( |
| 136 blink::WebRTCPeerConnectionHandlerClient* client); | 136 blink::WebRTCPeerConnectionHandlerClient* client); |
| 137 blink::WebRTCCertificateGenerator* createRTCCertificateGenerator() override; |
| 137 virtual blink::WebMediaRecorderHandler* createMediaRecorderHandler(); | 138 virtual blink::WebMediaRecorderHandler* createMediaRecorderHandler(); |
| 138 virtual blink::WebMediaStreamCenter* createMediaStreamCenter( | 139 virtual blink::WebMediaStreamCenter* createMediaStreamCenter( |
| 139 blink::WebMediaStreamCenterClient* client); | 140 blink::WebMediaStreamCenterClient* client); |
| 140 virtual bool processMemorySizesInBytes( | 141 virtual bool processMemorySizesInBytes( |
| 141 size_t* private_bytes, size_t* shared_bytes); | 142 size_t* private_bytes, size_t* shared_bytes); |
| 142 virtual blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( | 143 virtual blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( |
| 143 const blink::WebGraphicsContext3D::Attributes& attributes); | 144 const blink::WebGraphicsContext3D::Attributes& attributes); |
| 144 virtual blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( | 145 virtual blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( |
| 145 const blink::WebGraphicsContext3D::Attributes& attributes, | 146 const blink::WebGraphicsContext3D::Attributes& attributes, |
| 146 blink::WebGraphicsContext3D* share_context); | 147 blink::WebGraphicsContext3D* share_context); |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 device::VibrationManagerPtr vibration_manager_; | 267 device::VibrationManagerPtr vibration_manager_; |
| 267 | 268 |
| 268 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; | 269 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; |
| 269 | 270 |
| 270 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 271 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
| 271 }; | 272 }; |
| 272 | 273 |
| 273 } // namespace content | 274 } // namespace content |
| 274 | 275 |
| 275 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 276 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |