| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 virtual WebKit::WebKitPlatformSupport::FileHandle databaseOpenFile( | 54 virtual WebKit::WebKitPlatformSupport::FileHandle databaseOpenFile( |
| 55 const WebKit::WebString& vfs_file_name, int desired_flags) OVERRIDE; | 55 const WebKit::WebString& vfs_file_name, int desired_flags) OVERRIDE; |
| 56 virtual int databaseDeleteFile(const WebKit::WebString& vfs_file_name, | 56 virtual int databaseDeleteFile(const WebKit::WebString& vfs_file_name, |
| 57 bool sync_dir) OVERRIDE; | 57 bool sync_dir) OVERRIDE; |
| 58 virtual long databaseGetFileAttributes( | 58 virtual long databaseGetFileAttributes( |
| 59 const WebKit::WebString& vfs_file_name) OVERRIDE; | 59 const WebKit::WebString& vfs_file_name) OVERRIDE; |
| 60 virtual long long databaseGetFileSize( | 60 virtual long long databaseGetFileSize( |
| 61 const WebKit::WebString& vfs_file_name) OVERRIDE; | 61 const WebKit::WebString& vfs_file_name) OVERRIDE; |
| 62 virtual long long databaseGetSpaceAvailableForOrigin( | 62 virtual long long databaseGetSpaceAvailableForOrigin( |
| 63 const WebKit::WebString& origin_identifier) OVERRIDE; | 63 const WebKit::WebString& origin_identifier) OVERRIDE; |
| 64 virtual WebKit::WebDeviceMotionDetector* deviceMotionDetector() OVERRIDE; |
| 64 virtual WebKit::WebString signedPublicKeyAndChallengeString( | 65 virtual WebKit::WebString signedPublicKeyAndChallengeString( |
| 65 unsigned key_size_index, | 66 unsigned key_size_index, |
| 66 const WebKit::WebString& challenge, | 67 const WebKit::WebString& challenge, |
| 67 const WebKit::WebURL& url) OVERRIDE; | 68 const WebKit::WebURL& url) OVERRIDE; |
| 68 virtual void screenColorProfile(WebKit::WebVector<char>* to_profile) OVERRIDE; | 69 virtual void screenColorProfile(WebKit::WebVector<char>* to_profile) OVERRIDE; |
| 69 virtual WebKit::WebIDBFactory* idbFactory() OVERRIDE; | 70 virtual WebKit::WebIDBFactory* idbFactory() OVERRIDE; |
| 70 virtual void createIDBKeysFromSerializedValuesAndKeyPath( | 71 virtual void createIDBKeysFromSerializedValuesAndKeyPath( |
| 71 const WebKit::WebVector<WebKit::WebSerializedScriptValue>& values, | 72 const WebKit::WebVector<WebKit::WebSerializedScriptValue>& values, |
| 72 const WebKit::WebIDBKeyPath& keyPath, | 73 const WebKit::WebIDBKeyPath& keyPath, |
| 73 WebKit::WebVector<WebKit::WebIDBKey>& keys) OVERRIDE; | 74 WebKit::WebVector<WebKit::WebIDBKey>& keys) OVERRIDE; |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_; | 137 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_; |
| 137 | 138 |
| 138 scoped_ptr<WebFileSystemImpl> web_file_system_; | 139 scoped_ptr<WebFileSystemImpl> web_file_system_; |
| 139 | 140 |
| 140 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; | 141 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; |
| 141 | 142 |
| 142 scoped_ptr<content::GamepadSharedMemoryReader> gamepad_shared_memory_reader_; | 143 scoped_ptr<content::GamepadSharedMemoryReader> gamepad_shared_memory_reader_; |
| 143 }; | 144 }; |
| 144 | 145 |
| 145 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 146 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
| OLD | NEW |