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

Unified Diff: components/filesystem/file_system_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: gyp-ify all the tracing stuff. Created 4 years, 10 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/filesystem/file_system_impl.cc
diff --git a/components/filesystem/file_system_impl.cc b/components/filesystem/file_system_impl.cc
index 414bab14f85bd4806d87ffa4ad820c535b9de88b..f6b4df1829b38bb3ec659c9ca1af83fcd79a2d5e 100644
--- a/components/filesystem/file_system_impl.cc
+++ b/components/filesystem/file_system_impl.cc
@@ -22,16 +22,16 @@ namespace filesystem {
FileSystemImpl::FileSystemImpl(mojo::Connection* connection,
mojo::InterfaceRequest<FileSystem> request,
- base::FilePath persistent_dir,
+ const base::FilePath& persistent_dir,
LockTable* lock_table)
: remote_application_url_(connection->GetRemoteApplicationURL()),
michaeln 2016/02/26 21:59:24 what is this?
binding_(this, std::move(request)),
lock_table_(lock_table),
- persistent_dir_(persistent_dir) {}
-
-FileSystemImpl::~FileSystemImpl() {
+ persistent_dir_(persistent_dir) {
}
+FileSystemImpl::~FileSystemImpl() {}
+
void FileSystemImpl::OpenTempDirectory(
mojo::InterfaceRequest<Directory> directory,
const OpenTempDirectoryCallback& callback) {

Powered by Google App Engine
This is Rietveld 408576698