| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 const WebKit::WebString& vfs_file_name) OVERRIDE; | 63 const WebKit::WebString& vfs_file_name) OVERRIDE; |
| 64 virtual long long databaseGetSpaceAvailableForOrigin( | 64 virtual long long databaseGetSpaceAvailableForOrigin( |
| 65 const WebKit::WebString& origin_identifier) OVERRIDE; | 65 const WebKit::WebString& origin_identifier) OVERRIDE; |
| 66 virtual WebKit::WebString signedPublicKeyAndChallengeString( | 66 virtual WebKit::WebString signedPublicKeyAndChallengeString( |
| 67 unsigned key_size_index, | 67 unsigned key_size_index, |
| 68 const WebKit::WebString& challenge, | 68 const WebKit::WebString& challenge, |
| 69 const WebKit::WebURL& url) OVERRIDE; | 69 const WebKit::WebURL& url) OVERRIDE; |
| 70 virtual WebKit::WebIDBFactory* idbFactory() OVERRIDE; | 70 virtual WebKit::WebIDBFactory* idbFactory() OVERRIDE; |
| 71 virtual void createIDBKeysFromSerializedValuesAndKeyPath( | 71 virtual void createIDBKeysFromSerializedValuesAndKeyPath( |
| 72 const WebKit::WebVector<WebKit::WebSerializedScriptValue>& values, | 72 const WebKit::WebVector<WebKit::WebSerializedScriptValue>& values, |
| 73 const WebKit::WebString& keyPath, | 73 const WebKit::WebIDBKeyPath& keyPath, |
| 74 WebKit::WebVector<WebKit::WebIDBKey>& keys) OVERRIDE; | 74 WebKit::WebVector<WebKit::WebIDBKey>& keys) OVERRIDE; |
| 75 virtual WebKit::WebSerializedScriptValue injectIDBKeyIntoSerializedValue( | 75 virtual WebKit::WebSerializedScriptValue injectIDBKeyIntoSerializedValue( |
| 76 const WebKit::WebIDBKey& key, | 76 const WebKit::WebIDBKey& key, |
| 77 const WebKit::WebSerializedScriptValue& value, | 77 const WebKit::WebSerializedScriptValue& value, |
| 78 const WebKit::WebString& keyPath) OVERRIDE; | 78 const WebKit::WebIDBKeyPath& keyPath) OVERRIDE; |
| 79 virtual WebKit::WebFileSystem* fileSystem() OVERRIDE; | 79 virtual WebKit::WebFileSystem* fileSystem() OVERRIDE; |
| 80 virtual WebKit::WebSharedWorkerRepository* sharedWorkerRepository() OVERRIDE; | 80 virtual WebKit::WebSharedWorkerRepository* sharedWorkerRepository() OVERRIDE; |
| 81 virtual bool canAccelerate2dCanvas(); | 81 virtual bool canAccelerate2dCanvas(); |
| 82 virtual double audioHardwareSampleRate() OVERRIDE; | 82 virtual double audioHardwareSampleRate() OVERRIDE; |
| 83 virtual size_t audioHardwareBufferSize() OVERRIDE; | 83 virtual size_t audioHardwareBufferSize() OVERRIDE; |
| 84 virtual WebKit::WebAudioDevice* createAudioDevice( | 84 virtual WebKit::WebAudioDevice* createAudioDevice( |
| 85 size_t buffer_size, unsigned channels, double sample_rate, | 85 size_t buffer_size, unsigned channels, double sample_rate, |
| 86 WebKit::WebAudioDevice::RenderCallback* callback) OVERRIDE; | 86 WebKit::WebAudioDevice::RenderCallback* callback) OVERRIDE; |
| 87 virtual WebKit::WebBlobRegistry* blobRegistry() OVERRIDE; | 87 virtual WebKit::WebBlobRegistry* blobRegistry() OVERRIDE; |
| 88 virtual void sampleGamepads(WebKit::WebGamepads&) OVERRIDE; | 88 virtual void sampleGamepads(WebKit::WebGamepads&) OVERRIDE; |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_; | 130 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_; |
| 131 | 131 |
| 132 scoped_ptr<WebFileSystemImpl> web_file_system_; | 132 scoped_ptr<WebFileSystemImpl> web_file_system_; |
| 133 | 133 |
| 134 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; | 134 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; |
| 135 | 135 |
| 136 scoped_ptr<content::GamepadSharedMemoryReader> gamepad_shared_memory_reader_; | 136 scoped_ptr<content::GamepadSharedMemoryReader> gamepad_shared_memory_reader_; |
| 137 }; | 137 }; |
| 138 | 138 |
| 139 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 139 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
| OLD | NEW |