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" | |
11 #include "content/child/blink_platform_impl.h" | 10 #include "content/child/blink_platform_impl.h" |
12 #include "content/common/content_export.h" | 11 #include "content/common/content_export.h" |
13 #include "content/renderer/webpublicsuffixlist_impl.h" | 12 #include "content/renderer/webpublicsuffixlist_impl.h" |
14 #include "third_party/WebKit/public/platform/WebGraphicsContext3D.h" | 13 #include "third_party/WebKit/public/platform/WebGraphicsContext3D.h" |
15 #include "third_party/WebKit/public/platform/WebIDBFactory.h" | 14 #include "third_party/WebKit/public/platform/WebIDBFactory.h" |
16 #include "third_party/WebKit/public/platform/WebScreenOrientationType.h" | 15 #include "third_party/WebKit/public/platform/WebScreenOrientationType.h" |
17 #include "webkit/renderer/compositor_bindings/web_compositor_support_impl.h" | 16 #include "webkit/renderer/compositor_bindings/web_compositor_support_impl.h" |
18 | 17 |
19 namespace base { | 18 namespace base { |
20 class MessageLoopProxy; | 19 class MessageLoopProxy; |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 scoped_ptr<ScreenOrientationDispatcher> screen_orientation_dispatcher_; | 229 scoped_ptr<ScreenOrientationDispatcher> screen_orientation_dispatcher_; |
231 | 230 |
232 scoped_ptr<blink::WebScrollbarBehavior> web_scrollbar_behavior_; | 231 scoped_ptr<blink::WebScrollbarBehavior> web_scrollbar_behavior_; |
233 | 232 |
234 DISALLOW_COPY_AND_ASSIGN(RendererWebKitPlatformSupportImpl); | 233 DISALLOW_COPY_AND_ASSIGN(RendererWebKitPlatformSupportImpl); |
235 }; | 234 }; |
236 | 235 |
237 } // namespace content | 236 } // namespace content |
238 | 237 |
239 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 238 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
OLD | NEW |