| 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/WebKit/chromium/public/WebIDBFactory.h" | 14 #include "third_party/WebKit/Source/WebKit/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 | 16 |
| 17 namespace webkit_glue { | 17 namespace webkit_glue { |
| 18 class WebClipboardImpl; | 18 class WebClipboardImpl; |
| 19 } | 19 } |
| 20 | 20 |
| 21 namespace content { | 21 namespace content { |
| 22 class GamepadSharedMemoryReader; | 22 class GamepadSharedMemoryReader; |
| 23 class RendererClipboardClient; | 23 class RendererClipboardClient; |
| 24 class ThreadSafeSender; |
| 24 class WebFileSystemImpl; | 25 class WebFileSystemImpl; |
| 25 class WebSharedWorkerRepositoryImpl; | 26 class WebSharedWorkerRepositoryImpl; |
| 26 | 27 |
| 27 class CONTENT_EXPORT RendererWebKitPlatformSupportImpl | 28 class CONTENT_EXPORT RendererWebKitPlatformSupportImpl |
| 28 : public WebKitPlatformSupportImpl { | 29 : public WebKitPlatformSupportImpl { |
| 29 public: | 30 public: |
| 30 RendererWebKitPlatformSupportImpl(); | 31 RendererWebKitPlatformSupportImpl(); |
| 31 virtual ~RendererWebKitPlatformSupportImpl(); | 32 virtual ~RendererWebKitPlatformSupportImpl(); |
| 32 | 33 |
| 33 void set_plugin_refresh_allowed(bool plugin_refresh_allowed) { | 34 void set_plugin_refresh_allowed(bool plugin_refresh_allowed) { |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 // to WorkerService on the browser thread. | 148 // to WorkerService on the browser thread. |
| 148 scoped_ptr<WebSharedWorkerRepositoryImpl> shared_worker_repository_; | 149 scoped_ptr<WebSharedWorkerRepositoryImpl> shared_worker_repository_; |
| 149 | 150 |
| 150 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_; | 151 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_; |
| 151 | 152 |
| 152 scoped_ptr<WebFileSystemImpl> web_file_system_; | 153 scoped_ptr<WebFileSystemImpl> web_file_system_; |
| 153 | 154 |
| 154 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; | 155 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; |
| 155 | 156 |
| 156 scoped_ptr<GamepadSharedMemoryReader> gamepad_shared_memory_reader_; | 157 scoped_ptr<GamepadSharedMemoryReader> gamepad_shared_memory_reader_; |
| 158 |
| 159 scoped_refptr<ThreadSafeSender> thread_safe_sender_; |
| 157 }; | 160 }; |
| 158 | 161 |
| 159 } // namespace content | 162 } // namespace content |
| 160 | 163 |
| 161 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 164 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
| OLD | NEW |