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