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

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

Issue 18075008: IndexedDB: Switch key/value handling from vector<char> to std::string (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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_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);
}

Powered by Google App Engine
This is Rietveld 408576698