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