Index: content/browser/indexed_db/indexed_db_transaction.cc |
diff --git a/content/browser/indexed_db/indexed_db_transaction.cc b/content/browser/indexed_db/indexed_db_transaction.cc |
index 3713b2db1f2893f5de6c0fe93bffe684a3e9f35c..cdfb133eec1e259a60d99c505858b5358e3fa61a 100644 |
--- a/content/browser/indexed_db/indexed_db_transaction.cc |
+++ b/content/browser/indexed_db/indexed_db_transaction.cc |
@@ -4,7 +4,6 @@ |
#include "content/browser/indexed_db/indexed_db_transaction.h" |
-#include <vector> |
#include "base/logging.h" |
#include "base/strings/utf_string_conversions.h" |
#include "content/browser/indexed_db/indexed_db_backing_store.h" |
@@ -254,9 +253,8 @@ void IndexedDBTransaction::Commit() { |
} else { |
callbacks_->OnAbort( |
id_, |
- IndexedDBDatabaseError( |
- WebKit::WebIDBDatabaseExceptionUnknownError, |
- "Internal error committing transaction.")); |
+ IndexedDBDatabaseError(WebKit::WebIDBDatabaseExceptionUnknownError, |
+ "Internal error committing transaction.")); |
database_->TransactionFinishedAndAbortFired(this); |
} |