Index: content/browser/indexed_db/leveldb/leveldb_database.cc |
diff --git a/content/browser/indexed_db/leveldb/leveldb_database.cc b/content/browser/indexed_db/leveldb/leveldb_database.cc |
index 99bc3afc5b423a45092133de60f3ee9ece5a31e3..1d816a849c7dea0d6a1e529e261acd38650e572f 100644 |
--- a/content/browser/indexed_db/leveldb/leveldb_database.cc |
+++ b/content/browser/indexed_db/leveldb/leveldb_database.cc |
@@ -103,7 +103,7 @@ static leveldb::Status OpenDB( |
options.create_if_missing = true; |
options.paranoid_checks = true; |
options.filter_policy = filter_policy->get(); |
- options.reuse_logs = true; |
+ options.reuse_logs = leveldb_env::kDefaultLogReuseOptionValue; |
options.compression = leveldb::kSnappyCompression; |
// For info about the troubles we've run into with this parameter, see: |