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

Unified Diff: chrome/browser/chromeos/file_system_provider/provided_file_system_info.cc

Issue 210803003: [fsp] Decouple file_service_provider::Service. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments. Created 6 years, 8 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: chrome/browser/chromeos/file_system_provider/provided_file_system_info.cc
diff --git a/chrome/browser/chromeos/file_system_provider/provided_file_system.cc b/chrome/browser/chromeos/file_system_provider/provided_file_system_info.cc
similarity index 58%
copy from chrome/browser/chromeos/file_system_provider/provided_file_system.cc
copy to chrome/browser/chromeos/file_system_provider/provided_file_system_info.cc
index 8d669afd31a467a82409229054b62a7029c3d8c1..b552436c59a01450f2e2e0ef98fe478b9b2da6b4 100644
--- a/chrome/browser/chromeos/file_system_provider/provided_file_system.cc
+++ b/chrome/browser/chromeos/file_system_provider/provided_file_system_info.cc
@@ -7,18 +7,19 @@
namespace chromeos {
namespace file_system_provider {
-ProvidedFileSystem::ProvidedFileSystem() {}
+ProvidedFileSystemInfo::ProvidedFileSystemInfo() {}
-ProvidedFileSystem::ProvidedFileSystem(const std::string& extension_id,
- int file_system_id,
- const std::string& file_system_name,
- const base::FilePath& mount_path)
+ProvidedFileSystemInfo::ProvidedFileSystemInfo(
+ const std::string& extension_id,
+ int file_system_id,
+ const std::string& file_system_name,
+ const base::FilePath& mount_path)
: extension_id_(extension_id),
file_system_id_(file_system_id),
file_system_name_(file_system_name),
mount_path_(mount_path) {}
-ProvidedFileSystem::~ProvidedFileSystem() {}
+ProvidedFileSystemInfo::~ProvidedFileSystemInfo() {}
} // namespace file_system_provider
} // namespace chromeos

Powered by Google App Engine
This is Rietveld 408576698