| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_PROVIDED_FILE_SYSTEM_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_PROVIDED_FILE_SYSTEM_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_PROVIDED_FILE_SYSTEM_H_ | 6 #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_PROVIDED_FILE_SYSTEM_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| 11 | 11 |
| 12 namespace chromeos { | 12 namespace chromeos { |
| 13 namespace file_system_provider { | 13 namespace file_system_provider { |
| 14 | 14 |
| 15 // Contains information about the provided file system instance. | 15 // Contains information about the provided file system instance. |
| 16 class ProvidedFileSystem { | 16 class ProvidedFileSystem { |
| 17 public: | 17 public: |
| 18 ProvidedFileSystem(); | 18 ProvidedFileSystem(); |
| 19 ProvidedFileSystem(const std::string& extension_id, | 19 ProvidedFileSystem(const std::string& extension_id, |
| 20 const std::string& file_system_id, | 20 int file_system_id, |
| 21 const std::string& file_system_name, | 21 const std::string& file_system_name, |
| 22 const base::FilePath& mount_path); | 22 const base::FilePath& mount_path); |
| 23 | 23 |
| 24 ~ProvidedFileSystem(); | 24 ~ProvidedFileSystem(); |
| 25 | 25 |
| 26 const std::string& extension_id() const { return extension_id_; } | 26 const std::string& extension_id() const { return extension_id_; } |
| 27 const std::string& file_system_id() const { return file_system_id_; } | 27 int file_system_id() const { return file_system_id_; } |
| 28 const std::string& file_system_name() const { return file_system_name_; } | 28 const std::string& file_system_name() const { return file_system_name_; } |
| 29 const base::FilePath& mount_path() const { return mount_path_; } | 29 const base::FilePath& mount_path() const { return mount_path_; } |
| 30 | 30 |
| 31 private: | 31 private: |
| 32 // ID of the extension providing this file system. | 32 // ID of the extension providing this file system. |
| 33 std::string extension_id_; | 33 std::string extension_id_; |
| 34 | 34 |
| 35 // ID of the file system, used internally. Equal to the mount point name of | 35 // ID of the file system, used internally. |
| 36 // the underlying file system. | 36 int file_system_id_; |
| 37 std::string file_system_id_; | |
| 38 | 37 |
| 39 // Name of the file system, can be rendered in the UI. | 38 // Name of the file system, can be rendered in the UI. |
| 40 std::string file_system_name_; | 39 std::string file_system_name_; |
| 41 | 40 |
| 42 // Mount path of the underlying file system. | 41 // Mount path of the underlying file system. |
| 43 base::FilePath mount_path_; | 42 base::FilePath mount_path_; |
| 44 }; | 43 }; |
| 45 | 44 |
| 46 } // namespace file_system_provider | 45 } // namespace file_system_provider |
| 47 } // namespace chromeos | 46 } // namespace chromeos |
| 48 | 47 |
| 49 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_PROVIDED_FILE_SYSTEM_H_ | 48 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_PROVIDED_FILE_SYSTEM_H_ |
| OLD | NEW |