| 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/common/content_export.h" | 11 #include "content/common/content_export.h" |
| 12 #include "content/common/webkitplatformsupport_impl.h" | 12 #include "content/common/webkitplatformsupport_impl.h" |
| 13 #include "third_party/WebKit/Source/Platform/chromium/public/WebGraphicsContext3
D.h" | 13 #include "third_party/WebKit/Source/Platform/chromium/public/WebGraphicsContext3
D.h" |
| 14 #include "third_party/WebKit/Source/Platform/chromium/public/WebIDBFactory.h" | 14 #include "third_party/WebKit/Source/Platform/chromium/public/WebIDBFactory.h" |
| 15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSharedWorkerReposi
tory.h" | 15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSharedWorkerReposi
tory.h" |
| 16 #include "webkit/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 |
| 26 namespace WebKit { | 26 namespace WebKit { |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 scoped_refptr<ThreadSafeSender> thread_safe_sender_; | 176 scoped_refptr<ThreadSafeSender> thread_safe_sender_; |
| 177 | 177 |
| 178 scoped_refptr<cc::ContextProvider> shared_offscreen_context_; | 178 scoped_refptr<cc::ContextProvider> shared_offscreen_context_; |
| 179 | 179 |
| 180 webkit::WebCompositorSupportImpl compositor_support_; | 180 webkit::WebCompositorSupportImpl compositor_support_; |
| 181 }; | 181 }; |
| 182 | 182 |
| 183 } // namespace content | 183 } // namespace content |
| 184 | 184 |
| 185 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 185 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
| OLD | NEW |