| 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 const char* audio_file_data, | 130 const char* audio_file_data, |
| 131 size_t data_size) override; | 131 size_t data_size) override; |
| 132 | 132 |
| 133 blink::WebMIDIAccessor* createMIDIAccessor( | 133 blink::WebMIDIAccessor* createMIDIAccessor( |
| 134 blink::WebMIDIAccessorClient* client) override; | 134 blink::WebMIDIAccessorClient* client) override; |
| 135 | 135 |
| 136 blink::WebBlobRegistry* blobRegistry() override; | 136 blink::WebBlobRegistry* blobRegistry() override; |
| 137 void sampleGamepads(blink::WebGamepads&) override; | 137 void sampleGamepads(blink::WebGamepads&) override; |
| 138 blink::WebRTCPeerConnectionHandler* createRTCPeerConnectionHandler( | 138 blink::WebRTCPeerConnectionHandler* createRTCPeerConnectionHandler( |
| 139 blink::WebRTCPeerConnectionHandlerClient* client) override; | 139 blink::WebRTCPeerConnectionHandlerClient* client) override; |
| 140 blink::WebRTCCertificateGenerator* createRTCCertificateGenerator() override; |
| 140 blink::WebMediaRecorderHandler* createMediaRecorderHandler() override; | 141 blink::WebMediaRecorderHandler* createMediaRecorderHandler() override; |
| 141 blink::WebMediaStreamCenter* createMediaStreamCenter( | 142 blink::WebMediaStreamCenter* createMediaStreamCenter( |
| 142 blink::WebMediaStreamCenterClient* client) override; | 143 blink::WebMediaStreamCenterClient* client) override; |
| 143 bool processMemorySizesInBytes(size_t* private_bytes, | 144 bool processMemorySizesInBytes(size_t* private_bytes, |
| 144 size_t* shared_bytes) override; | 145 size_t* shared_bytes) override; |
| 145 blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( | 146 blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( |
| 146 const blink::WebGraphicsContext3D::Attributes& attributes) override; | 147 const blink::WebGraphicsContext3D::Attributes& attributes) override; |
| 147 blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( | 148 blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( |
| 148 const blink::WebGraphicsContext3D::Attributes& attributes, | 149 const blink::WebGraphicsContext3D::Attributes& attributes, |
| 149 blink::WebGraphicsContext3D* share_context) override; | 150 blink::WebGraphicsContext3D* share_context) override; |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 device::VibrationManagerPtr vibration_manager_; | 271 device::VibrationManagerPtr vibration_manager_; |
| 271 | 272 |
| 272 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; | 273 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; |
| 273 | 274 |
| 274 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 275 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
| 275 }; | 276 }; |
| 276 | 277 |
| 277 } // namespace content | 278 } // namespace content |
| 278 | 279 |
| 279 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 280 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |