| 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" |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 virtual long databaseGetFileAttributes( | 55 virtual long databaseGetFileAttributes( |
| 56 const WebKit::WebString& vfs_file_name) OVERRIDE; | 56 const WebKit::WebString& vfs_file_name) OVERRIDE; |
| 57 virtual long long databaseGetFileSize( | 57 virtual long long databaseGetFileSize( |
| 58 const WebKit::WebString& vfs_file_name) OVERRIDE; | 58 const WebKit::WebString& vfs_file_name) OVERRIDE; |
| 59 virtual long long databaseGetSpaceAvailableForOrigin( | 59 virtual long long databaseGetSpaceAvailableForOrigin( |
| 60 const WebKit::WebString& origin_identifier) OVERRIDE; | 60 const WebKit::WebString& origin_identifier) OVERRIDE; |
| 61 virtual WebKit::WebString signedPublicKeyAndChallengeString( | 61 virtual WebKit::WebString signedPublicKeyAndChallengeString( |
| 62 unsigned key_size_index, | 62 unsigned key_size_index, |
| 63 const WebKit::WebString& challenge, | 63 const WebKit::WebString& challenge, |
| 64 const WebKit::WebURL& url) OVERRIDE; | 64 const WebKit::WebURL& url) OVERRIDE; |
| 65 virtual void screenColorProfile(WebKit::WebVector<char>* to_profile) OVERRIDE; |
| 65 virtual WebKit::WebIDBFactory* idbFactory() OVERRIDE; | 66 virtual WebKit::WebIDBFactory* idbFactory() OVERRIDE; |
| 66 virtual void createIDBKeysFromSerializedValuesAndKeyPath( | 67 virtual void createIDBKeysFromSerializedValuesAndKeyPath( |
| 67 const WebKit::WebVector<WebKit::WebSerializedScriptValue>& values, | 68 const WebKit::WebVector<WebKit::WebSerializedScriptValue>& values, |
| 68 const WebKit::WebIDBKeyPath& keyPath, | 69 const WebKit::WebIDBKeyPath& keyPath, |
| 69 WebKit::WebVector<WebKit::WebIDBKey>& keys) OVERRIDE; | 70 WebKit::WebVector<WebKit::WebIDBKey>& keys) OVERRIDE; |
| 70 virtual WebKit::WebSerializedScriptValue injectIDBKeyIntoSerializedValue( | 71 virtual WebKit::WebSerializedScriptValue injectIDBKeyIntoSerializedValue( |
| 71 const WebKit::WebIDBKey& key, | 72 const WebKit::WebIDBKey& key, |
| 72 const WebKit::WebSerializedScriptValue& value, | 73 const WebKit::WebSerializedScriptValue& value, |
| 73 const WebKit::WebIDBKeyPath& keyPath) OVERRIDE; | 74 const WebKit::WebIDBKeyPath& keyPath) OVERRIDE; |
| 74 virtual WebKit::WebFileSystem* fileSystem() OVERRIDE; | 75 virtual WebKit::WebFileSystem* fileSystem() OVERRIDE; |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_; | 132 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_; |
| 132 | 133 |
| 133 scoped_ptr<WebFileSystemImpl> web_file_system_; | 134 scoped_ptr<WebFileSystemImpl> web_file_system_; |
| 134 | 135 |
| 135 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; | 136 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; |
| 136 | 137 |
| 137 scoped_ptr<content::GamepadSharedMemoryReader> gamepad_shared_memory_reader_; | 138 scoped_ptr<content::GamepadSharedMemoryReader> gamepad_shared_memory_reader_; |
| 138 }; | 139 }; |
| 139 | 140 |
| 140 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 141 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
| OLD | NEW |