diff options
Diffstat (limited to 'WebKit/chromium/src/WebIndexedDatabaseImpl.cpp')
| -rw-r--r-- | WebKit/chromium/src/WebIndexedDatabaseImpl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WebKit/chromium/src/WebIndexedDatabaseImpl.cpp b/WebKit/chromium/src/WebIndexedDatabaseImpl.cpp index 6a6327b..4820cfb 100644 --- a/WebKit/chromium/src/WebIndexedDatabaseImpl.cpp +++ b/WebKit/chromium/src/WebIndexedDatabaseImpl.cpp @@ -47,9 +47,9 @@ WebIndexedDatabaseImpl::~WebIndexedDatabaseImpl() { } -void WebIndexedDatabaseImpl::open(const WebString& name, const WebString& description, bool modifyDatabase, WebIDBCallbacks<WebIDBDatabase>* callbacksPtr, WebFrame*, int& exceptionCode) +void WebIndexedDatabaseImpl::open(const WebString& name, const WebString& description, bool modifyDatabase, WebIDBCallbacks* callbacksPtr, const WebString& origin, WebFrame*, int& exceptionCode) { - OwnPtr<WebIDBCallbacks<WebIDBDatabase>*> callbacks(callbacksPtr); + OwnPtr<WebIDBCallbacks> callbacks(callbacksPtr); callbacks->onError(WebIDBDatabaseError(0, "Not implemented")); // FIXME: Implement for realz. } |
