| 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/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 namespace cc { | 23 namespace cc { |
| 24 class ContextProvider; | 24 class ContextProvider; |
| 25 } | 25 } |
| 26 | 26 |
| 27 namespace IPC { | 27 namespace IPC { |
| 28 class SyncMessageFilter; | 28 class SyncMessageFilter; |
| 29 } | 29 } |
| 30 | 30 |
| 31 namespace blink { | 31 namespace blink { |
| 32 class WebBatteryStatus; | 32 class WebBatteryStatus; |
| 33 class WebCredentialManager; |
| 33 class WebDeviceMotionData; | 34 class WebDeviceMotionData; |
| 34 class WebDeviceOrientationData; | 35 class WebDeviceOrientationData; |
| 35 class WebGraphicsContext3DProvider; | 36 class WebGraphicsContext3DProvider; |
| 36 } | 37 } |
| 37 | 38 |
| 38 namespace content { | 39 namespace content { |
| 39 class BatteryStatusDispatcher; | 40 class BatteryStatusDispatcher; |
| 40 class DeviceLightEventPump; | 41 class DeviceLightEventPump; |
| 41 class DeviceMotionEventPump; | 42 class DeviceMotionEventPump; |
| 42 class DeviceOrientationEventPump; | 43 class DeviceOrientationEventPump; |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 const blink::WebString& input_device_id); | 114 const blink::WebString& input_device_id); |
| 114 | 115 |
| 115 virtual bool loadAudioResource( | 116 virtual bool loadAudioResource( |
| 116 blink::WebAudioBus* destination_bus, const char* audio_file_data, | 117 blink::WebAudioBus* destination_bus, const char* audio_file_data, |
| 117 size_t data_size); | 118 size_t data_size); |
| 118 | 119 |
| 119 virtual blink::WebMIDIAccessor* | 120 virtual blink::WebMIDIAccessor* |
| 120 createMIDIAccessor(blink::WebMIDIAccessorClient* client); | 121 createMIDIAccessor(blink::WebMIDIAccessorClient* client); |
| 121 | 122 |
| 122 virtual blink::WebBlobRegistry* blobRegistry(); | 123 virtual blink::WebBlobRegistry* blobRegistry(); |
| 124 virtual blink::WebCredentialManager* credentialManager() OVERRIDE; |
| 123 virtual void sampleGamepads(blink::WebGamepads&); | 125 virtual void sampleGamepads(blink::WebGamepads&); |
| 124 virtual blink::WebRTCPeerConnectionHandler* createRTCPeerConnectionHandler( | 126 virtual blink::WebRTCPeerConnectionHandler* createRTCPeerConnectionHandler( |
| 125 blink::WebRTCPeerConnectionHandlerClient* client); | 127 blink::WebRTCPeerConnectionHandlerClient* client); |
| 126 virtual blink::WebMediaStreamCenter* createMediaStreamCenter( | 128 virtual blink::WebMediaStreamCenter* createMediaStreamCenter( |
| 127 blink::WebMediaStreamCenterClient* client); | 129 blink::WebMediaStreamCenterClient* client); |
| 128 virtual bool processMemorySizesInBytes( | 130 virtual bool processMemorySizesInBytes( |
| 129 size_t* private_bytes, size_t* shared_bytes); | 131 size_t* private_bytes, size_t* shared_bytes); |
| 130 virtual blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( | 132 virtual blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( |
| 131 const blink::WebGraphicsContext3D::Attributes& attributes); | 133 const blink::WebGraphicsContext3D::Attributes& attributes); |
| 132 virtual blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( | 134 virtual blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 scoped_ptr<BatteryStatusDispatcher> battery_status_dispatcher_; | 241 scoped_ptr<BatteryStatusDispatcher> battery_status_dispatcher_; |
| 240 | 242 |
| 241 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; | 243 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; |
| 242 | 244 |
| 243 DISALLOW_COPY_AND_ASSIGN(RendererWebKitPlatformSupportImpl); | 245 DISALLOW_COPY_AND_ASSIGN(RendererWebKitPlatformSupportImpl); |
| 244 }; | 246 }; |
| 245 | 247 |
| 246 } // namespace content | 248 } // namespace content |
| 247 | 249 |
| 248 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 250 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
| OLD | NEW |