| 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 12 matching lines...) Expand all Loading... |
| 23 | 23 |
| 24 namespace IPC { | 24 namespace IPC { |
| 25 class SyncMessageFilter; | 25 class SyncMessageFilter; |
| 26 } | 26 } |
| 27 | 27 |
| 28 namespace blink { | 28 namespace blink { |
| 29 class WebBatteryStatus; | 29 class WebBatteryStatus; |
| 30 class WebDeviceMotionData; | 30 class WebDeviceMotionData; |
| 31 class WebDeviceOrientationData; | 31 class WebDeviceOrientationData; |
| 32 class WebGraphicsContext3DProvider; | 32 class WebGraphicsContext3DProvider; |
| 33 class WebMediaRecorderHandler; |
| 33 class WebServiceWorkerCacheStorage; | 34 class WebServiceWorkerCacheStorage; |
| 34 } | 35 } |
| 35 | 36 |
| 36 namespace scheduler { | 37 namespace scheduler { |
| 37 class RendererScheduler; | 38 class RendererScheduler; |
| 38 class WebThreadImplForRendererScheduler; | 39 class WebThreadImplForRendererScheduler; |
| 39 } | 40 } |
| 40 | 41 |
| 41 namespace content { | 42 namespace content { |
| 42 class BatteryStatusDispatcher; | 43 class BatteryStatusDispatcher; |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 blink::WebAudioBus* destination_bus, const char* audio_file_data, | 124 blink::WebAudioBus* destination_bus, const char* audio_file_data, |
| 124 size_t data_size); | 125 size_t data_size); |
| 125 | 126 |
| 126 virtual blink::WebMIDIAccessor* | 127 virtual blink::WebMIDIAccessor* |
| 127 createMIDIAccessor(blink::WebMIDIAccessorClient* client); | 128 createMIDIAccessor(blink::WebMIDIAccessorClient* client); |
| 128 | 129 |
| 129 virtual blink::WebBlobRegistry* blobRegistry(); | 130 virtual blink::WebBlobRegistry* blobRegistry(); |
| 130 virtual void sampleGamepads(blink::WebGamepads&); | 131 virtual void sampleGamepads(blink::WebGamepads&); |
| 131 virtual blink::WebRTCPeerConnectionHandler* createRTCPeerConnectionHandler( | 132 virtual blink::WebRTCPeerConnectionHandler* createRTCPeerConnectionHandler( |
| 132 blink::WebRTCPeerConnectionHandlerClient* client); | 133 blink::WebRTCPeerConnectionHandlerClient* client); |
| 134 virtual blink::WebMediaRecorderHandler* createMediaRecorderHandler(); |
| 133 virtual blink::WebMediaStreamCenter* createMediaStreamCenter( | 135 virtual blink::WebMediaStreamCenter* createMediaStreamCenter( |
| 134 blink::WebMediaStreamCenterClient* client); | 136 blink::WebMediaStreamCenterClient* client); |
| 135 virtual bool processMemorySizesInBytes( | 137 virtual bool processMemorySizesInBytes( |
| 136 size_t* private_bytes, size_t* shared_bytes); | 138 size_t* private_bytes, size_t* shared_bytes); |
| 137 virtual blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( | 139 virtual blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( |
| 138 const blink::WebGraphicsContext3D::Attributes& attributes); | 140 const blink::WebGraphicsContext3D::Attributes& attributes); |
| 139 virtual blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( | 141 virtual blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( |
| 140 const blink::WebGraphicsContext3D::Attributes& attributes, | 142 const blink::WebGraphicsContext3D::Attributes& attributes, |
| 141 blink::WebGraphicsContext3D* share_context); | 143 blink::WebGraphicsContext3D* share_context); |
| 142 virtual blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( | 144 virtual blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 device::VibrationManagerPtr vibration_manager_; | 263 device::VibrationManagerPtr vibration_manager_; |
| 262 | 264 |
| 263 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; | 265 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; |
| 264 | 266 |
| 265 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 267 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
| 266 }; | 268 }; |
| 267 | 269 |
| 268 } // namespace content | 270 } // namespace content |
| 269 | 271 |
| 270 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 272 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |