OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "base/platform_file.h" | 11 #include "base/platform_file.h" |
12 #include "content/common/content_export.h" | 12 #include "content/common/content_export.h" |
13 #include "content/common/webkitplatformsupport_impl.h" | 13 #include "content/common/webkitplatformsupport_impl.h" |
14 | 14 |
| 15 class GamepadUtil; |
15 class RendererClipboardClient; | 16 class RendererClipboardClient; |
16 class WebSharedWorkerRepositoryImpl; | 17 class WebSharedWorkerRepositoryImpl; |
17 class WebFileSystemImpl; | 18 class WebFileSystemImpl; |
18 | 19 |
19 namespace IPC { | 20 namespace IPC { |
20 class SyncMessage; | 21 class SyncMessage; |
21 } | 22 } |
22 | 23 |
23 namespace webkit_glue { | 24 namespace webkit_glue { |
24 class WebClipboardImpl; | 25 class WebClipboardImpl; |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 const WebKit::WebString& keyPath) OVERRIDE; | 78 const WebKit::WebString& keyPath) OVERRIDE; |
78 virtual WebKit::WebFileSystem* fileSystem() OVERRIDE; | 79 virtual WebKit::WebFileSystem* fileSystem() OVERRIDE; |
79 virtual WebKit::WebSharedWorkerRepository* sharedWorkerRepository() OVERRIDE; | 80 virtual WebKit::WebSharedWorkerRepository* sharedWorkerRepository() OVERRIDE; |
80 virtual WebKit::WebGraphicsContext3D* createGraphicsContext3D() OVERRIDE; | 81 virtual WebKit::WebGraphicsContext3D* createGraphicsContext3D() OVERRIDE; |
81 virtual double audioHardwareSampleRate() OVERRIDE; | 82 virtual double audioHardwareSampleRate() OVERRIDE; |
82 virtual size_t audioHardwareBufferSize() OVERRIDE; | 83 virtual size_t audioHardwareBufferSize() OVERRIDE; |
83 virtual WebKit::WebAudioDevice* createAudioDevice( | 84 virtual WebKit::WebAudioDevice* createAudioDevice( |
84 size_t buffer_size, unsigned channels, double sample_rate, | 85 size_t buffer_size, unsigned channels, double sample_rate, |
85 WebKit::WebAudioDevice::RenderCallback* callback) OVERRIDE; | 86 WebKit::WebAudioDevice::RenderCallback* callback) OVERRIDE; |
86 virtual WebKit::WebBlobRegistry* blobRegistry() OVERRIDE; | 87 virtual WebKit::WebBlobRegistry* blobRegistry() OVERRIDE; |
| 88 virtual void sampleGamepads(WebKit::WebGamepads&) OVERRIDE; |
87 virtual WebKit::WebString userAgent(const WebKit::WebURL& url) OVERRIDE; | 89 virtual WebKit::WebString userAgent(const WebKit::WebURL& url) OVERRIDE; |
88 virtual void GetPlugins(bool refresh, | 90 virtual void GetPlugins(bool refresh, |
89 std::vector<webkit::WebPluginInfo>* plugins) OVERRIDE; | 91 std::vector<webkit::WebPluginInfo>* plugins) OVERRIDE; |
90 | 92 |
91 private: | 93 private: |
92 bool CheckPreparsedJsCachingEnabled() const; | 94 bool CheckPreparsedJsCachingEnabled() const; |
93 | 95 |
94 // Helper function to send synchronous message from any thread. | 96 // Helper function to send synchronous message from any thread. |
95 static bool SendSyncMessageFromAnyThread(IPC::SyncMessage* msg); | 97 static bool SendSyncMessageFromAnyThread(IPC::SyncMessage* msg); |
96 | 98 |
(...skipping 17 matching lines...) Expand all Loading... |
114 | 116 |
115 // Implementation of the WebSharedWorkerRepository APIs (provides an interface | 117 // Implementation of the WebSharedWorkerRepository APIs (provides an interface |
116 // to WorkerService on the browser thread. | 118 // to WorkerService on the browser thread. |
117 scoped_ptr<WebSharedWorkerRepositoryImpl> shared_worker_repository_; | 119 scoped_ptr<WebSharedWorkerRepositoryImpl> shared_worker_repository_; |
118 | 120 |
119 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_; | 121 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_; |
120 | 122 |
121 scoped_ptr<WebFileSystemImpl> web_file_system_; | 123 scoped_ptr<WebFileSystemImpl> web_file_system_; |
122 | 124 |
123 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; | 125 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; |
| 126 |
| 127 scoped_ptr<GamepadUtil> gamepad_util_; |
124 }; | 128 }; |
125 | 129 |
126 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 130 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
OLD | NEW |