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 #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" |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 virtual WebKit::WebAudioDevice* createAudioDevice( | 88 virtual WebKit::WebAudioDevice* createAudioDevice( |
89 size_t buffer_size, unsigned channels, double sample_rate, | 89 size_t buffer_size, unsigned channels, double sample_rate, |
90 WebKit::WebAudioDevice::RenderCallback* callback) OVERRIDE; | 90 WebKit::WebAudioDevice::RenderCallback* callback) OVERRIDE; |
91 virtual WebKit::WebBlobRegistry* blobRegistry() OVERRIDE; | 91 virtual WebKit::WebBlobRegistry* blobRegistry() OVERRIDE; |
92 virtual void sampleGamepads(WebKit::WebGamepads&) OVERRIDE; | 92 virtual void sampleGamepads(WebKit::WebGamepads&) OVERRIDE; |
93 virtual WebKit::WebString userAgent(const WebKit::WebURL& url) OVERRIDE; | 93 virtual WebKit::WebString userAgent(const WebKit::WebURL& url) OVERRIDE; |
94 virtual void GetPlugins(bool refresh, | 94 virtual void GetPlugins(bool refresh, |
95 std::vector<webkit::WebPluginInfo>* plugins) OVERRIDE; | 95 std::vector<webkit::WebPluginInfo>* plugins) OVERRIDE; |
96 virtual WebKit::WebPeerConnectionHandler* createPeerConnectionHandler( | 96 virtual WebKit::WebPeerConnectionHandler* createPeerConnectionHandler( |
97 WebKit::WebPeerConnectionHandlerClient* client) OVERRIDE; | 97 WebKit::WebPeerConnectionHandlerClient* client) OVERRIDE; |
| 98 virtual WebKit::WebPeerConnection00Handler* createPeerConnection00Handler( |
| 99 WebKit::WebPeerConnection00HandlerClient* client) OVERRIDE; |
98 virtual WebKit::WebMediaStreamCenter* createMediaStreamCenter( | 100 virtual WebKit::WebMediaStreamCenter* createMediaStreamCenter( |
99 WebKit::WebMediaStreamCenterClient* client) OVERRIDE; | 101 WebKit::WebMediaStreamCenterClient* client) OVERRIDE; |
100 | 102 |
101 protected: | 103 protected: |
102 virtual GpuChannelHostFactory* GetGpuChannelHostFactory() OVERRIDE; | 104 virtual GpuChannelHostFactory* GetGpuChannelHostFactory() OVERRIDE; |
103 | 105 |
104 private: | 106 private: |
105 bool CheckPreparsedJsCachingEnabled() const; | 107 bool CheckPreparsedJsCachingEnabled() const; |
106 | 108 |
107 // Helper function to send synchronous message from any thread. | 109 // Helper function to send synchronous message from any thread. |
(...skipping 24 matching lines...) Expand all Loading... |
132 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_; | 134 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_; |
133 | 135 |
134 scoped_ptr<WebFileSystemImpl> web_file_system_; | 136 scoped_ptr<WebFileSystemImpl> web_file_system_; |
135 | 137 |
136 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; | 138 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; |
137 | 139 |
138 scoped_ptr<content::GamepadSharedMemoryReader> gamepad_shared_memory_reader_; | 140 scoped_ptr<content::GamepadSharedMemoryReader> gamepad_shared_memory_reader_; |
139 }; | 141 }; |
140 | 142 |
141 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 143 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
OLD | NEW |