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 GamepadSharedMemoryReader; | 37 class GamepadSharedMemoryReader; |
| 38 class QuotaMessageFilter; |
38 class RendererClipboardClient; | 39 class RendererClipboardClient; |
39 class ThreadSafeSender; | 40 class ThreadSafeSender; |
40 class WebClipboardImpl; | 41 class WebClipboardImpl; |
41 class WebCryptoImpl; | 42 class WebCryptoImpl; |
42 class WebFileSystemImpl; | 43 class WebFileSystemImpl; |
43 class WebSharedWorkerRepositoryImpl; | 44 class WebSharedWorkerRepositoryImpl; |
44 | 45 |
45 class CONTENT_EXPORT RendererWebKitPlatformSupportImpl | 46 class CONTENT_EXPORT RendererWebKitPlatformSupportImpl |
46 : public WebKitPlatformSupportImpl { | 47 : public WebKitPlatformSupportImpl { |
47 public: | 48 public: |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 | 204 |
204 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; | 205 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; |
205 | 206 |
206 scoped_ptr<GamepadSharedMemoryReader> gamepad_shared_memory_reader_; | 207 scoped_ptr<GamepadSharedMemoryReader> gamepad_shared_memory_reader_; |
207 | 208 |
208 scoped_ptr<DeviceMotionEventPump> device_motion_event_pump_; | 209 scoped_ptr<DeviceMotionEventPump> device_motion_event_pump_; |
209 | 210 |
210 scoped_refptr<base::MessageLoopProxy> child_thread_loop_; | 211 scoped_refptr<base::MessageLoopProxy> child_thread_loop_; |
211 scoped_refptr<IPC::SyncMessageFilter> sync_message_filter_; | 212 scoped_refptr<IPC::SyncMessageFilter> sync_message_filter_; |
212 scoped_refptr<ThreadSafeSender> thread_safe_sender_; | 213 scoped_refptr<ThreadSafeSender> thread_safe_sender_; |
| 214 scoped_refptr<QuotaMessageFilter> quota_message_filter_; |
213 | 215 |
214 scoped_refptr<cc::ContextProvider> shared_offscreen_context_; | 216 scoped_refptr<cc::ContextProvider> shared_offscreen_context_; |
215 | 217 |
216 webkit::WebCompositorSupportImpl compositor_support_; | 218 webkit::WebCompositorSupportImpl compositor_support_; |
217 | 219 |
218 scoped_ptr<WebCryptoImpl> web_crypto_; | 220 scoped_ptr<WebCryptoImpl> web_crypto_; |
219 }; | 221 }; |
220 | 222 |
221 } // namespace content | 223 } // namespace content |
222 | 224 |
223 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 225 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
OLD | NEW |