| Index: content/browser/indexed_db/webidbfactory_impl.cc
|
| diff --git a/content/browser/indexed_db/webidbfactory_impl.cc b/content/browser/indexed_db/webidbfactory_impl.cc
|
| index 1fc78fac6e89cf3fb768c7bdb5520eba91781da4..65fcead30ecb7346f6967dae13337bdce614a10a 100644
|
| --- a/content/browser/indexed_db/webidbfactory_impl.cc
|
| +++ b/content/browser/indexed_db/webidbfactory_impl.cc
|
| @@ -8,12 +8,8 @@
|
| #include "content/browser/indexed_db/indexed_db_callbacks_wrapper.h"
|
| #include "content/browser/indexed_db/indexed_db_factory.h"
|
| #include "content/browser/indexed_db/indexed_db_factory_impl.h"
|
| -#include "third_party/WebKit/public/platform/WebIDBDatabaseCallbacks.h"
|
| #include "third_party/WebKit/public/platform/WebIDBDatabaseError.h"
|
|
|
| -using WebKit::WebIDBCallbacks;
|
| -using WebKit::WebIDBDatabaseCallbacks;
|
| -using WebKit::WebIDBFactory;
|
| using WebKit::WebString;
|
|
|
| namespace content {
|
| @@ -23,7 +19,7 @@ WebIDBFactoryImpl::WebIDBFactoryImpl()
|
|
|
| WebIDBFactoryImpl::~WebIDBFactoryImpl() {}
|
|
|
| -void WebIDBFactoryImpl::getDatabaseNames(WebIDBCallbacks* callbacks,
|
| +void WebIDBFactoryImpl::getDatabaseNames(IndexedDBCallbacksBase* callbacks,
|
| const WebString& database_identifier,
|
| const WebString& data_dir) {
|
| idb_factory_backend_->GetDatabaseNames(
|
| @@ -35,8 +31,8 @@ void WebIDBFactoryImpl::getDatabaseNames(WebIDBCallbacks* callbacks,
|
| void WebIDBFactoryImpl::open(const WebString& name,
|
| long long version,
|
| long long transaction_id,
|
| - WebIDBCallbacks* callbacks,
|
| - WebIDBDatabaseCallbacks* database_callbacks,
|
| + IndexedDBCallbacksBase* callbacks,
|
| + IndexedDBDatabaseCallbacks* database_callbacks,
|
| const WebString& database_identifier,
|
| const WebString& data_dir) {
|
| scoped_refptr<IndexedDBCallbacksWrapper> callbacks_proxy =
|
| @@ -55,7 +51,7 @@ void WebIDBFactoryImpl::open(const WebString& name,
|
| }
|
|
|
| void WebIDBFactoryImpl::deleteDatabase(const WebString& name,
|
| - WebIDBCallbacks* callbacks,
|
| + IndexedDBCallbacksBase* callbacks,
|
| const WebString& database_identifier,
|
| const WebString& data_dir) {
|
| idb_factory_backend_->DeleteDatabase(
|
|
|