Chromium Code Reviews| Index: Source/WebKit/chromium/src/IDBFactoryBackendProxy.h |
| diff --git a/Source/WebKit/chromium/src/IDBFactoryBackendProxy.h b/Source/WebKit/chromium/src/IDBFactoryBackendProxy.h |
| index 605bae9ec02d941bbf4fc290dcdf188f4eb7511e..384afd24afd303b81780c57235a4f5bcb5bb1529 100644 |
| --- a/Source/WebKit/chromium/src/IDBFactoryBackendProxy.h |
| +++ b/Source/WebKit/chromium/src/IDBFactoryBackendProxy.h |
| @@ -34,6 +34,7 @@ |
| namespace WebCore { |
| class ScriptExecutionContext; |
| +class SecurityOrigin; |
|
jsbell
2013/04/24 21:25:21
This seems extraneous.
|
| } |
| namespace WebKit { |
| @@ -46,9 +47,9 @@ public: |
| static PassRefPtr<WebCore::IDBFactoryBackendInterface> create(); |
| virtual ~IDBFactoryBackendProxy(); |
| - virtual void getDatabaseNames(PassRefPtr<WebCore::IDBCallbacks>, PassRefPtr<WebCore::SecurityOrigin>, WebCore::ScriptExecutionContext*, const String& dataDir); |
| - virtual void open(const String& name, int64_t version, int64_t transactionId, PassRefPtr<WebCore::IDBCallbacks>, PassRefPtr<WebCore::IDBDatabaseCallbacks>, PassRefPtr<WebCore::SecurityOrigin>, WebCore::ScriptExecutionContext*, const String& dataDir); |
| - virtual void deleteDatabase(const String& name, PassRefPtr<WebCore::IDBCallbacks>, PassRefPtr<WebCore::SecurityOrigin>, WebCore::ScriptExecutionContext*, const String& dataDir); |
| + virtual void getDatabaseNames(PassRefPtr<WebCore::IDBCallbacks>, const String& databaseIdentifier, WebCore::ScriptExecutionContext*, const String& dataDir); |
| + virtual void open(const String& name, int64_t version, int64_t transactionId, PassRefPtr<WebCore::IDBCallbacks>, PassRefPtr<WebCore::IDBDatabaseCallbacks>, const String& databaseIdentifier, WebCore::ScriptExecutionContext*, const String& dataDir); |
| + virtual void deleteDatabase(const String& name, PassRefPtr<WebCore::IDBCallbacks>, const String& databaseIdentifier, WebCore::ScriptExecutionContext*, const String& dataDir); |
| private: |
| IDBFactoryBackendProxy(); |