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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 const char* canonicalURL, size_t length) OVERRIDE; | 46 const char* canonicalURL, size_t length) OVERRIDE; |
47 virtual bool isLinkVisited(unsigned long long linkHash) OVERRIDE; | 47 virtual bool isLinkVisited(unsigned long long linkHash) OVERRIDE; |
48 virtual WebKit::WebMessagePortChannel* createMessagePortChannel() OVERRIDE; | 48 virtual WebKit::WebMessagePortChannel* createMessagePortChannel() OVERRIDE; |
49 virtual void prefetchHostName(const WebKit::WebString&) OVERRIDE; | 49 virtual void prefetchHostName(const WebKit::WebString&) OVERRIDE; |
50 virtual void cacheMetadata( | 50 virtual void cacheMetadata( |
51 const WebKit::WebURL&, double, const char*, size_t) OVERRIDE; | 51 const WebKit::WebURL&, double, const char*, size_t) OVERRIDE; |
52 virtual WebKit::WebString defaultLocale() OVERRIDE; | 52 virtual WebKit::WebString defaultLocale() OVERRIDE; |
53 virtual void suddenTerminationChanged(bool enabled) OVERRIDE; | 53 virtual void suddenTerminationChanged(bool enabled) OVERRIDE; |
54 virtual WebKit::WebStorageNamespace* createLocalStorageNamespace( | 54 virtual WebKit::WebStorageNamespace* createLocalStorageNamespace( |
55 const WebKit::WebString& path, unsigned quota) OVERRIDE; | 55 const WebKit::WebString& path, unsigned quota) OVERRIDE; |
56 virtual void dispatchStorageEvent( | |
57 const WebKit::WebString& key, const WebKit::WebString& old_value, | |
58 const WebKit::WebString& new_value, const WebKit::WebString& origin, | |
59 const WebKit::WebURL& url, bool is_local_storage) OVERRIDE; | |
60 virtual WebKit::WebKitPlatformSupport::FileHandle databaseOpenFile( | 56 virtual WebKit::WebKitPlatformSupport::FileHandle databaseOpenFile( |
61 const WebKit::WebString& vfs_file_name, int desired_flags) OVERRIDE; | 57 const WebKit::WebString& vfs_file_name, int desired_flags) OVERRIDE; |
62 virtual int databaseDeleteFile(const WebKit::WebString& vfs_file_name, | 58 virtual int databaseDeleteFile(const WebKit::WebString& vfs_file_name, |
63 bool sync_dir) OVERRIDE; | 59 bool sync_dir) OVERRIDE; |
64 virtual long databaseGetFileAttributes( | 60 virtual long databaseGetFileAttributes( |
65 const WebKit::WebString& vfs_file_name) OVERRIDE; | 61 const WebKit::WebString& vfs_file_name) OVERRIDE; |
66 virtual long long databaseGetFileSize( | 62 virtual long long databaseGetFileSize( |
67 const WebKit::WebString& vfs_file_name) OVERRIDE; | 63 const WebKit::WebString& vfs_file_name) OVERRIDE; |
68 virtual long long databaseGetSpaceAvailableForOrigin( | 64 virtual long long databaseGetSpaceAvailableForOrigin( |
69 const WebKit::WebString& origin_identifier) OVERRIDE; | 65 const WebKit::WebString& origin_identifier) OVERRIDE; |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_; | 130 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_; |
135 | 131 |
136 scoped_ptr<WebFileSystemImpl> web_file_system_; | 132 scoped_ptr<WebFileSystemImpl> web_file_system_; |
137 | 133 |
138 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; | 134 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; |
139 | 135 |
140 scoped_ptr<content::GamepadSharedMemoryReader> gamepad_shared_memory_reader_; | 136 scoped_ptr<content::GamepadSharedMemoryReader> gamepad_shared_memory_reader_; |
141 }; | 137 }; |
142 | 138 |
143 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 139 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
OLD | NEW |