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/WebKit/chromium/public/platform/WebGraphicsC
ontext3D.h" | 13 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebGraphicsC
ontext3D.h" |
14 | 14 |
15 class WebSharedWorkerRepositoryImpl; | |
16 class WebFileSystemImpl; | |
17 | |
18 namespace webkit_glue { | 15 namespace webkit_glue { |
19 class WebClipboardImpl; | 16 class WebClipboardImpl; |
20 } | 17 } |
21 | 18 |
22 namespace content { | 19 namespace content { |
23 class GamepadSharedMemoryReader; | 20 class GamepadSharedMemoryReader; |
24 class Hyphenator; | 21 class Hyphenator; |
25 class RendererClipboardClient; | 22 class RendererClipboardClient; |
| 23 class WebFileSystemImpl; |
| 24 class WebSharedWorkerRepositoryImpl; |
26 | 25 |
27 class CONTENT_EXPORT RendererWebKitPlatformSupportImpl | 26 class CONTENT_EXPORT RendererWebKitPlatformSupportImpl |
28 : public WebKitPlatformSupportImpl { | 27 : public WebKitPlatformSupportImpl { |
29 public: | 28 public: |
30 RendererWebKitPlatformSupportImpl(); | 29 RendererWebKitPlatformSupportImpl(); |
31 virtual ~RendererWebKitPlatformSupportImpl(); | 30 virtual ~RendererWebKitPlatformSupportImpl(); |
32 | 31 |
33 void set_plugin_refresh_allowed(bool plugin_refresh_allowed) { | 32 void set_plugin_refresh_allowed(bool plugin_refresh_allowed) { |
34 plugin_refresh_allowed_ = plugin_refresh_allowed; | 33 plugin_refresh_allowed_ = plugin_refresh_allowed; |
35 } | 34 } |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; | 138 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; |
140 | 139 |
141 scoped_ptr<GamepadSharedMemoryReader> gamepad_shared_memory_reader_; | 140 scoped_ptr<GamepadSharedMemoryReader> gamepad_shared_memory_reader_; |
142 | 141 |
143 scoped_ptr<content::Hyphenator> hyphenator_; | 142 scoped_ptr<content::Hyphenator> hyphenator_; |
144 }; | 143 }; |
145 | 144 |
146 } // namespace content | 145 } // namespace content |
147 | 146 |
148 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 147 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
OLD | NEW |