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" |
| 11 #include "content/child/webkitplatformsupport_impl.h" |
11 #include "content/common/content_export.h" | 12 #include "content/common/content_export.h" |
12 #include "content/common/webkitplatformsupport_impl.h" | 13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSharedWorkerReposi
tory.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/Source/WebKit/chromium/public/WebSharedWorkerReposi
tory.h" | |
16 #include "webkit/renderer/compositor_bindings/web_compositor_support_impl.h" | 16 #include "webkit/renderer/compositor_bindings/web_compositor_support_impl.h" |
17 | 17 |
18 namespace cc { | 18 namespace cc { |
19 class ContextProvider; | 19 class ContextProvider; |
20 } | 20 } |
21 | 21 |
22 namespace webkit_glue { | 22 namespace webkit_glue { |
23 class WebClipboardImpl; | 23 class WebClipboardImpl; |
24 } | 24 } |
25 | 25 |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 scoped_refptr<ThreadSafeSender> thread_safe_sender_; | 175 scoped_refptr<ThreadSafeSender> thread_safe_sender_; |
176 | 176 |
177 scoped_refptr<cc::ContextProvider> shared_offscreen_context_; | 177 scoped_refptr<cc::ContextProvider> shared_offscreen_context_; |
178 | 178 |
179 webkit::WebCompositorSupportImpl compositor_support_; | 179 webkit::WebCompositorSupportImpl compositor_support_; |
180 }; | 180 }; |
181 | 181 |
182 } // namespace content | 182 } // namespace content |
183 | 183 |
184 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 184 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
OLD | NEW |