Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(811)

Side by Side Diff: content/renderer/renderer_webkitplatformsupport_impl.h

Issue 317163002: Moving compositor_bindings from webkit to content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 scoped_ptr<DeviceMotionEventPump> device_motion_event_pump_; 227 scoped_ptr<DeviceMotionEventPump> device_motion_event_pump_;
228 scoped_ptr<DeviceOrientationEventPump> device_orientation_event_pump_; 228 scoped_ptr<DeviceOrientationEventPump> device_orientation_event_pump_;
229 229
230 scoped_refptr<base::MessageLoopProxy> child_thread_loop_; 230 scoped_refptr<base::MessageLoopProxy> child_thread_loop_;
231 scoped_refptr<IPC::SyncMessageFilter> sync_message_filter_; 231 scoped_refptr<IPC::SyncMessageFilter> sync_message_filter_;
232 scoped_refptr<ThreadSafeSender> thread_safe_sender_; 232 scoped_refptr<ThreadSafeSender> thread_safe_sender_;
233 scoped_refptr<QuotaMessageFilter> quota_message_filter_; 233 scoped_refptr<QuotaMessageFilter> quota_message_filter_;
234 234
235 scoped_ptr<WebDatabaseObserverImpl> web_database_observer_impl_; 235 scoped_ptr<WebDatabaseObserverImpl> web_database_observer_impl_;
236 236
237 webkit::WebCompositorSupportImpl compositor_support_; 237 WebCompositorSupportImpl compositor_support_;
238 238
239 scoped_ptr<ScreenOrientationDispatcher> screen_orientation_dispatcher_; 239 scoped_ptr<ScreenOrientationDispatcher> screen_orientation_dispatcher_;
240 240
241 scoped_ptr<blink::WebScrollbarBehavior> web_scrollbar_behavior_; 241 scoped_ptr<blink::WebScrollbarBehavior> web_scrollbar_behavior_;
242 242
243 scoped_ptr<BatteryStatusDispatcher> battery_status_dispatcher_; 243 scoped_ptr<BatteryStatusDispatcher> battery_status_dispatcher_;
244 244
245 DISALLOW_COPY_AND_ASSIGN(RendererWebKitPlatformSupportImpl); 245 DISALLOW_COPY_AND_ASSIGN(RendererWebKitPlatformSupportImpl);
246 }; 246 };
247 247
248 } // namespace content 248 } // namespace content
249 249
250 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ 250 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698