| 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 "base/platform_file.h" | 10 #include "base/platform_file.h" |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 } | 28 } |
| 29 | 29 |
| 30 namespace WebKit { | 30 namespace WebKit { |
| 31 class WebDeviceMotionData; | 31 class WebDeviceMotionData; |
| 32 class WebGraphicsContext3DProvider; | 32 class WebGraphicsContext3DProvider; |
| 33 } | 33 } |
| 34 | 34 |
| 35 namespace content { | 35 namespace content { |
| 36 class DeviceMotionEventPump; | 36 class DeviceMotionEventPump; |
| 37 class DeviceOrientationEventPump; | 37 class DeviceOrientationEventPump; |
| 38 class GamepadSharedMemoryReader; | |
| 39 class QuotaMessageFilter; | 38 class QuotaMessageFilter; |
| 40 class RendererClipboardClient; | 39 class RendererClipboardClient; |
| 41 class ThreadSafeSender; | 40 class ThreadSafeSender; |
| 42 class WebClipboardImpl; | 41 class WebClipboardImpl; |
| 43 class WebCryptoImpl; | 42 class WebCryptoImpl; |
| 44 class WebFileSystemImpl; | 43 class WebFileSystemImpl; |
| 45 class WebSharedWorkerRepositoryImpl; | 44 class WebSharedWorkerRepositoryImpl; |
| 46 | 45 |
| 47 class CONTENT_EXPORT RendererWebKitPlatformSupportImpl | 46 class CONTENT_EXPORT RendererWebKitPlatformSupportImpl |
| 48 : public WebKitPlatformSupportImpl { | 47 : public WebKitPlatformSupportImpl { |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 // Implementation of the WebSharedWorkerRepository APIs (provides an interface | 194 // Implementation of the WebSharedWorkerRepository APIs (provides an interface |
| 196 // to WorkerService on the browser thread. | 195 // to WorkerService on the browser thread. |
| 197 scoped_ptr<WebSharedWorkerRepositoryImpl> shared_worker_repository_; | 196 scoped_ptr<WebSharedWorkerRepositoryImpl> shared_worker_repository_; |
| 198 | 197 |
| 199 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_; | 198 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_; |
| 200 | 199 |
| 201 scoped_ptr<WebFileSystemImpl> web_file_system_; | 200 scoped_ptr<WebFileSystemImpl> web_file_system_; |
| 202 | 201 |
| 203 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; | 202 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; |
| 204 | 203 |
| 205 scoped_ptr<GamepadSharedMemoryReader> gamepad_shared_memory_reader_; | |
| 206 | |
| 207 scoped_ptr<DeviceMotionEventPump> device_motion_event_pump_; | 204 scoped_ptr<DeviceMotionEventPump> device_motion_event_pump_; |
| 208 scoped_ptr<DeviceOrientationEventPump> device_orientation_event_pump_; | 205 scoped_ptr<DeviceOrientationEventPump> device_orientation_event_pump_; |
| 209 | 206 |
| 210 scoped_refptr<base::MessageLoopProxy> child_thread_loop_; | 207 scoped_refptr<base::MessageLoopProxy> child_thread_loop_; |
| 211 scoped_refptr<IPC::SyncMessageFilter> sync_message_filter_; | 208 scoped_refptr<IPC::SyncMessageFilter> sync_message_filter_; |
| 212 scoped_refptr<ThreadSafeSender> thread_safe_sender_; | 209 scoped_refptr<ThreadSafeSender> thread_safe_sender_; |
| 213 scoped_refptr<QuotaMessageFilter> quota_message_filter_; | 210 scoped_refptr<QuotaMessageFilter> quota_message_filter_; |
| 214 | 211 |
| 215 scoped_refptr<cc::ContextProvider> shared_offscreen_context_; | 212 scoped_refptr<cc::ContextProvider> shared_offscreen_context_; |
| 216 | 213 |
| 217 webkit::WebCompositorSupportImpl compositor_support_; | 214 webkit::WebCompositorSupportImpl compositor_support_; |
| 218 | 215 |
| 219 scoped_ptr<WebCryptoImpl> web_crypto_; | 216 scoped_ptr<WebCryptoImpl> web_crypto_; |
| 220 }; | 217 }; |
| 221 | 218 |
| 222 } // namespace content | 219 } // namespace content |
| 223 | 220 |
| 224 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 221 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
| OLD | NEW |