| Index: content/browser/indexed_db/indexed_db_database_callbacks.h
|
| diff --git a/content/browser/indexed_db/indexed_db_database_callbacks.h b/content/browser/indexed_db/indexed_db_database_callbacks.h
|
| index fe3df30eb846e7f89e57650586abb2748fcc7a12..3a8b684b686c387de029cbb7aefd317d266daa42 100644
|
| --- a/content/browser/indexed_db/indexed_db_database_callbacks.h
|
| +++ b/content/browser/indexed_db/indexed_db_database_callbacks.h
|
| @@ -7,11 +7,8 @@
|
|
|
| #include "base/memory/ref_counted.h"
|
|
|
| -namespace WebKit {
|
| -class WebIDBDatabaseError;
|
| -}
|
| -
|
| namespace content {
|
| +class IndexedDBDatabaseError;
|
| class IndexedDBDispatcherHost;
|
|
|
| class IndexedDBDatabaseCallbacks {
|
| @@ -25,7 +22,7 @@ class IndexedDBDatabaseCallbacks {
|
| virtual void onForcedClose();
|
| virtual void onVersionChange(long long old_version, long long new_version);
|
| virtual void onAbort(long long host_transaction_id,
|
| - const WebKit::WebIDBDatabaseError&);
|
| + const IndexedDBDatabaseError& error);
|
| virtual void onComplete(long long host_transaction_id);
|
|
|
| private:
|
|
|