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

Side by Side Diff: components/filesystem/file_system_impl.cc

Issue 1962503002: Add mojom module suffix in .mojom files for components/filesystem. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 unified diff | Download patch
« no previous file with comments | « components/filesystem/file_system_impl.h ('k') | components/filesystem/files_test_base.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/filesystem/file_system_impl.h" 5 #include "components/filesystem/file_system_impl.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <memory> 9 #include <memory>
10 #include <utility> 10 #include <utility>
11 11
12 #include "base/files/file_path.h" 12 #include "base/files/file_path.h"
13 #include "base/files/file_util.h" 13 #include "base/files/file_util.h"
14 #include "base/files/scoped_file.h" 14 #include "base/files/scoped_file.h"
15 #include "base/files/scoped_temp_dir.h" 15 #include "base/files/scoped_temp_dir.h"
16 #include "base/logging.h" 16 #include "base/logging.h"
17 #include "build/build_config.h" 17 #include "build/build_config.h"
18 #include "components/filesystem/directory_impl.h" 18 #include "components/filesystem/directory_impl.h"
19 #include "components/filesystem/lock_table.h" 19 #include "components/filesystem/lock_table.h"
20 #include "services/shell/public/cpp/connection.h" 20 #include "services/shell/public/cpp/connection.h"
21 #include "url/gurl.h" 21 #include "url/gurl.h"
22 22
23 namespace filesystem { 23 namespace filesystem {
24 24
25 FileSystemImpl::FileSystemImpl(shell::Connection* connection, 25 FileSystemImpl::FileSystemImpl(shell::Connection* connection,
26 FileSystemRequest request, 26 mojom::FileSystemRequest request,
27 base::FilePath persistent_dir, 27 base::FilePath persistent_dir,
28 scoped_refptr<LockTable> lock_table) 28 scoped_refptr<LockTable> lock_table)
29 : remote_application_name_(connection->GetRemoteIdentity().name()), 29 : remote_application_name_(connection->GetRemoteIdentity().name()),
30 binding_(this, std::move(request)), 30 binding_(this, std::move(request)),
31 lock_table_(std::move(lock_table)), 31 lock_table_(std::move(lock_table)),
32 persistent_dir_(persistent_dir) {} 32 persistent_dir_(persistent_dir) {}
33 33
34 FileSystemImpl::~FileSystemImpl() { 34 FileSystemImpl::~FileSystemImpl() {
35 } 35 }
36 36
37 void FileSystemImpl::OpenTempDirectory( 37 void FileSystemImpl::OpenTempDirectory(
38 mojo::InterfaceRequest<Directory> directory, 38 mojo::InterfaceRequest<mojom::Directory> directory,
39 const OpenTempDirectoryCallback& callback) { 39 const OpenTempDirectoryCallback& callback) {
40 // Set only if the |DirectoryImpl| will own a temporary directory. 40 // Set only if the |DirectoryImpl| will own a temporary directory.
41 std::unique_ptr<base::ScopedTempDir> temp_dir(new base::ScopedTempDir); 41 std::unique_ptr<base::ScopedTempDir> temp_dir(new base::ScopedTempDir);
42 CHECK(temp_dir->CreateUniqueTempDir()); 42 CHECK(temp_dir->CreateUniqueTempDir());
43 43
44 base::FilePath path = temp_dir->path(); 44 base::FilePath path = temp_dir->path();
45 scoped_refptr<SharedTempDir> shared_temp_dir = 45 scoped_refptr<SharedTempDir> shared_temp_dir =
46 new SharedTempDir(std::move(temp_dir)); 46 new SharedTempDir(std::move(temp_dir));
47 new DirectoryImpl( 47 new DirectoryImpl(
48 std::move(directory), path, std::move(shared_temp_dir), lock_table_); 48 std::move(directory), path, std::move(shared_temp_dir), lock_table_);
49 callback.Run(FileError::OK); 49 callback.Run(mojom::FileError::OK);
50 } 50 }
51 51
52 void FileSystemImpl::OpenPersistentFileSystem( 52 void FileSystemImpl::OpenPersistentFileSystem(
53 mojo::InterfaceRequest<Directory> directory, 53 mojo::InterfaceRequest<mojom::Directory> directory,
54 const OpenPersistentFileSystemCallback& callback) { 54 const OpenPersistentFileSystemCallback& callback) {
55 std::unique_ptr<base::ScopedTempDir> temp_dir; 55 std::unique_ptr<base::ScopedTempDir> temp_dir;
56 base::FilePath path = persistent_dir_; 56 base::FilePath path = persistent_dir_;
57 if (!base::PathExists(path)) 57 if (!base::PathExists(path))
58 base::CreateDirectory(path); 58 base::CreateDirectory(path);
59 59
60 scoped_refptr<SharedTempDir> shared_temp_dir = 60 scoped_refptr<SharedTempDir> shared_temp_dir =
61 new SharedTempDir(std::move(temp_dir)); 61 new SharedTempDir(std::move(temp_dir));
62 62
63 new DirectoryImpl( 63 new DirectoryImpl(
64 std::move(directory), path, std::move(shared_temp_dir), lock_table_); 64 std::move(directory), path, std::move(shared_temp_dir), lock_table_);
65 callback.Run(FileError::OK); 65 callback.Run(mojom::FileError::OK);
66 } 66 }
67 67
68 } // namespace filesystem 68 } // namespace filesystem
OLDNEW
« no previous file with comments | « components/filesystem/file_system_impl.h ('k') | components/filesystem/files_test_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698