Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1218)

Unified Diff: content/browser/indexed_db/indexed_db_database_callbacks_wrapper.cc

Issue 17915004: IndexedDB: Remove uses of WebKit API types from back-end code (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/indexed_db/indexed_db_database_callbacks_wrapper.cc
diff --git a/content/browser/indexed_db/indexed_db_database_callbacks_wrapper.cc b/content/browser/indexed_db/indexed_db_database_callbacks_wrapper.cc
index a5a2f67f08ddc86c3674e941bd5781faa04abdc0..3b3af7004908ebe0bef5c5c9141bc638a8da4897 100644
--- a/content/browser/indexed_db/indexed_db_database_callbacks_wrapper.cc
+++ b/content/browser/indexed_db/indexed_db_database_callbacks_wrapper.cc
@@ -30,9 +30,7 @@ void IndexedDBDatabaseCallbacksWrapper::OnAbort(
const IndexedDBDatabaseError& error) {
if (!callbacks_)
return;
- callbacks_->onAbort(
- transaction_id,
- WebKit::WebIDBDatabaseError(error.code(), error.message()));
+ callbacks_->onAbort(transaction_id, error);
}
void IndexedDBDatabaseCallbacksWrapper::OnComplete(int64 transaction_id) {
if (!callbacks_)
« no previous file with comments | « content/browser/indexed_db/indexed_db_database_callbacks.cc ('k') | content/browser/indexed_db/indexed_db_database_error.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698