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

Unified Diff: content/browser/indexed_db/leveldb/leveldb_transaction.cc

Issue 198223002: Added IndexedDBPendingConnection to group up a bunch of parameters that get (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge out Created 6 years, 9 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
« no previous file with comments | « content/browser/indexed_db/indexed_db_unittest.cc ('k') | content/content_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/indexed_db/leveldb/leveldb_transaction.cc
diff --git a/content/browser/indexed_db/leveldb/leveldb_transaction.cc b/content/browser/indexed_db/leveldb/leveldb_transaction.cc
index fa1c829e50833c8d0c27a7987bcb864f22bc45d6..88839a57d5b9d5da3e852280598ff5b7892b7b6a 100644
--- a/content/browser/indexed_db/leveldb/leveldb_transaction.cc
+++ b/content/browser/indexed_db/leveldb/leveldb_transaction.cc
@@ -434,14 +434,14 @@ LevelDBDirectTransaction::~LevelDBDirectTransaction() {
}
void LevelDBDirectTransaction::Put(const StringPiece& key,
- const std::string* value) {
+ const std::string* value) {
DCHECK(!finished_);
write_batch_->Put(key, *value);
}
leveldb::Status LevelDBDirectTransaction::Get(const StringPiece& key,
- std::string* value,
- bool* found) {
+ std::string* value,
+ bool* found) {
*found = false;
DCHECK(!finished_);
« no previous file with comments | « content/browser/indexed_db/indexed_db_unittest.cc ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698