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 "content/child/blink_platform_impl.h" | 11 #include "content/child/blink_platform_impl.h" |
11 #include "content/common/content_export.h" | 12 #include "content/common/content_export.h" |
12 #include "content/renderer/compositor_bindings/web_compositor_support_impl.h" | |
13 #include "content/renderer/webpublicsuffixlist_impl.h" | 13 #include "content/renderer/webpublicsuffixlist_impl.h" |
14 #include "third_party/WebKit/public/platform/WebGraphicsContext3D.h" | 14 #include "third_party/WebKit/public/platform/WebGraphicsContext3D.h" |
15 #include "third_party/WebKit/public/platform/WebIDBFactory.h" | 15 #include "third_party/WebKit/public/platform/WebIDBFactory.h" |
16 #include "third_party/WebKit/public/platform/WebScreenOrientationType.h" | 16 #include "third_party/WebKit/public/platform/WebScreenOrientationType.h" |
17 | 17 |
18 namespace base { | 18 namespace base { |
19 class MessageLoopProxy; | 19 class MessageLoopProxy; |
20 } | 20 } |
21 | 21 |
22 namespace cc { | 22 namespace cc { |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
220 scoped_ptr<DeviceMotionEventPump> device_motion_event_pump_; | 220 scoped_ptr<DeviceMotionEventPump> device_motion_event_pump_; |
221 scoped_ptr<DeviceOrientationEventPump> device_orientation_event_pump_; | 221 scoped_ptr<DeviceOrientationEventPump> device_orientation_event_pump_; |
222 | 222 |
223 scoped_refptr<base::MessageLoopProxy> child_thread_loop_; | 223 scoped_refptr<base::MessageLoopProxy> child_thread_loop_; |
224 scoped_refptr<IPC::SyncMessageFilter> sync_message_filter_; | 224 scoped_refptr<IPC::SyncMessageFilter> sync_message_filter_; |
225 scoped_refptr<ThreadSafeSender> thread_safe_sender_; | 225 scoped_refptr<ThreadSafeSender> thread_safe_sender_; |
226 scoped_refptr<QuotaMessageFilter> quota_message_filter_; | 226 scoped_refptr<QuotaMessageFilter> quota_message_filter_; |
227 | 227 |
228 scoped_ptr<WebDatabaseObserverImpl> web_database_observer_impl_; | 228 scoped_ptr<WebDatabaseObserverImpl> web_database_observer_impl_; |
229 | 229 |
230 WebCompositorSupportImpl compositor_support_; | 230 cc_blink::WebCompositorSupportImpl compositor_support_; |
231 | 231 |
232 scoped_ptr<blink::WebScrollbarBehavior> web_scrollbar_behavior_; | 232 scoped_ptr<blink::WebScrollbarBehavior> web_scrollbar_behavior_; |
233 | 233 |
234 scoped_ptr<BatteryStatusDispatcher> battery_status_dispatcher_; | 234 scoped_ptr<BatteryStatusDispatcher> battery_status_dispatcher_; |
235 | 235 |
236 RendererGamepadProvider* gamepad_provider_; | 236 RendererGamepadProvider* gamepad_provider_; |
237 | 237 |
238 DISALLOW_COPY_AND_ASSIGN(RendererWebKitPlatformSupportImpl); | 238 DISALLOW_COPY_AND_ASSIGN(RendererWebKitPlatformSupportImpl); |
239 }; | 239 }; |
240 | 240 |
241 } // namespace content | 241 } // namespace content |
242 | 242 |
243 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 243 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
OLD | NEW |