Index: content/browser/indexed_db/leveldb/leveldb_transaction.h |
diff --git a/content/browser/indexed_db/leveldb/leveldb_transaction.h b/content/browser/indexed_db/leveldb/leveldb_transaction.h |
index 988506fac5e6d0f0079651a731d46c32c7da3a35..4075178ed1e23ad6138574b15730b270085e8e1e 100644 |
--- a/content/browser/indexed_db/leveldb/leveldb_transaction.h |
+++ b/content/browser/indexed_db/leveldb/leveldb_transaction.h |
@@ -26,7 +26,7 @@ class CONTENT_EXPORT LevelDBTransaction |
: public base::RefCounted<LevelDBTransaction> { |
public: |
void Put(const base::StringPiece& key, std::string* value); |
- void Remove(const base::StringPiece& key); |
+ bool Remove(const base::StringPiece& key); |
dmurph
2016/05/19 01:01:39
Put a comment here:
"Returns true if the record w
palakj1
2016/05/19 23:47:52
Done in header file
|
virtual leveldb::Status Get(const base::StringPiece& key, |
std::string* value, |
bool* found); |
@@ -130,7 +130,6 @@ class CONTENT_EXPORT LevelDBTransaction |
DISALLOW_COPY_AND_ASSIGN(TransactionIterator); |
}; |
- void Set(const base::StringPiece& key, std::string* value, bool deleted); |
void Clear(); |
void RegisterIterator(TransactionIterator* iterator); |
void UnregisterIterator(TransactionIterator* iterator); |