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

Unified Diff: components/leveldb/leveldb_service_impl.cc

Issue 1737933002: mojo leveldb: Get profile and leveldb connected to DOMStorageContext. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge tot Created 4 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
Index: components/leveldb/leveldb_service_impl.cc
diff --git a/components/leveldb/leveldb_service_impl.cc b/components/leveldb/leveldb_service_impl.cc
index 404019e9992ffa0050dd3a5cae7c81c1c64afa7a..baff56bd6a651abba774469acdaaa1b904242f1e 100644
--- a/components/leveldb/leveldb_service_impl.cc
+++ b/components/leveldb/leveldb_service_impl.cc
@@ -15,15 +15,13 @@
namespace leveldb {
-LevelDBServiceImpl::LevelDBServiceImpl()
- : thread_(new LevelDBFileThread) {
-}
+LevelDBServiceImpl::LevelDBServiceImpl() : thread_(new LevelDBFileThread) {}
LevelDBServiceImpl::~LevelDBServiceImpl() {}
void LevelDBServiceImpl::Open(filesystem::DirectoryPtr directory,
const mojo::String& dbname,
- mojo::InterfaceRequest<LevelDBDatabase> database,
+ leveldb::LevelDBDatabaseRequest database,
const OpenCallback& callback) {
// This is the place where we open a database.
leveldb::Options options;

Powered by Google App Engine
This is Rietveld 408576698