| Index: content/browser/indexed_db/indexed_db_callbacks.cc
|
| diff --git a/content/browser/indexed_db/indexed_db_callbacks.cc b/content/browser/indexed_db/indexed_db_callbacks.cc
|
| index 8bcf80d0bacb391e8c7e8f1e1f699619c6c6044b..111d574d452c1a6ccf4e5c55d46e3f29c8564d79 100644
|
| --- a/content/browser/indexed_db/indexed_db_callbacks.cc
|
| +++ b/content/browser/indexed_db/indexed_db_callbacks.cc
|
| @@ -7,14 +7,13 @@
|
| #include <algorithm>
|
| #include <vector>
|
|
|
| +#include "content/browser/indexed_db/indexed_db_database_error.h"
|
| #include "content/browser/indexed_db/indexed_db_metadata.h"
|
| #include "content/browser/indexed_db/webidbdatabase_impl.h"
|
| #include "content/common/indexed_db/indexed_db_messages.h"
|
| #include "webkit/browser/quota/quota_manager.h"
|
|
|
| -using WebKit::WebData;
|
| using WebKit::WebIDBCallbacks;
|
| -using WebKit::WebString;
|
|
|
| namespace content {
|
|
|
| @@ -32,7 +31,7 @@ IndexedDBCallbacksBase::IndexedDBCallbacksBase(
|
|
|
| IndexedDBCallbacksBase::~IndexedDBCallbacksBase() {}
|
|
|
| -void IndexedDBCallbacksBase::onError(const WebKit::WebIDBDatabaseError& error) {
|
| +void IndexedDBCallbacksBase::onError(const IndexedDBDatabaseError& error) {
|
| dispatcher_host_->Send(new IndexedDBMsg_CallbacksError(
|
| ipc_thread_id_, ipc_callbacks_id_, error.code(), error.message()));
|
| }
|
|
|