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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
56 virtual long databaseGetFileAttributes( | 56 virtual long databaseGetFileAttributes( |
57 const WebKit::WebString& vfs_file_name) OVERRIDE; | 57 const WebKit::WebString& vfs_file_name) OVERRIDE; |
58 virtual long long databaseGetFileSize( | 58 virtual long long databaseGetFileSize( |
59 const WebKit::WebString& vfs_file_name) OVERRIDE; | 59 const WebKit::WebString& vfs_file_name) OVERRIDE; |
60 virtual long long databaseGetSpaceAvailableForOrigin( | 60 virtual long long databaseGetSpaceAvailableForOrigin( |
61 const WebKit::WebString& origin_identifier) OVERRIDE; | 61 const WebKit::WebString& origin_identifier) OVERRIDE; |
62 virtual WebKit::WebString signedPublicKeyAndChallengeString( | 62 virtual WebKit::WebString signedPublicKeyAndChallengeString( |
63 unsigned key_size_index, | 63 unsigned key_size_index, |
64 const WebKit::WebString& challenge, | 64 const WebKit::WebString& challenge, |
65 const WebKit::WebURL& url) OVERRIDE; | 65 const WebKit::WebURL& url) OVERRIDE; |
66 virtual void screenColorProfile( | |
67 const WebKit::WebString& type, | |
68 WebKit::WebVector<char>*) OVERRIDE; | |
jam
2012/06/20 16:21:21
nit: chrome style is to name parameters in the .h
tpayne
2012/06/20 16:39:03
Done.
| |
66 virtual WebKit::WebIDBFactory* idbFactory() OVERRIDE; | 69 virtual WebKit::WebIDBFactory* idbFactory() OVERRIDE; |
67 virtual void createIDBKeysFromSerializedValuesAndKeyPath( | 70 virtual void createIDBKeysFromSerializedValuesAndKeyPath( |
68 const WebKit::WebVector<WebKit::WebSerializedScriptValue>& values, | 71 const WebKit::WebVector<WebKit::WebSerializedScriptValue>& values, |
69 const WebKit::WebIDBKeyPath& keyPath, | 72 const WebKit::WebIDBKeyPath& keyPath, |
70 WebKit::WebVector<WebKit::WebIDBKey>& keys) OVERRIDE; | 73 WebKit::WebVector<WebKit::WebIDBKey>& keys) OVERRIDE; |
71 virtual WebKit::WebSerializedScriptValue injectIDBKeyIntoSerializedValue( | 74 virtual WebKit::WebSerializedScriptValue injectIDBKeyIntoSerializedValue( |
72 const WebKit::WebIDBKey& key, | 75 const WebKit::WebIDBKey& key, |
73 const WebKit::WebSerializedScriptValue& value, | 76 const WebKit::WebSerializedScriptValue& value, |
74 const WebKit::WebIDBKeyPath& keyPath) OVERRIDE; | 77 const WebKit::WebIDBKeyPath& keyPath) OVERRIDE; |
75 virtual WebKit::WebFileSystem* fileSystem() OVERRIDE; | 78 virtual WebKit::WebFileSystem* fileSystem() OVERRIDE; |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
132 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_; | 135 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_; |
133 | 136 |
134 scoped_ptr<WebFileSystemImpl> web_file_system_; | 137 scoped_ptr<WebFileSystemImpl> web_file_system_; |
135 | 138 |
136 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; | 139 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; |
137 | 140 |
138 scoped_ptr<content::GamepadSharedMemoryReader> gamepad_shared_memory_reader_; | 141 scoped_ptr<content::GamepadSharedMemoryReader> gamepad_shared_memory_reader_; |
139 }; | 142 }; |
140 | 143 |
141 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 144 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
OLD | NEW |