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