Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_UTIL_H_ | |
| 6 #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_UTIL_H_ | |
|
hashimoto
2014/04/09 06:18:23
I'm a bit worried about the file name "util.h" bec
mtomasz
2014/04/09 19:51:15
Done.
| |
| 7 | |
| 8 #include <string> | |
| 9 | |
| 10 class Profile; | |
| 11 | |
| 12 namespace base { | |
| 13 class FilePath; | |
| 14 } // namespace base | |
| 15 | |
| 16 namespace chromeos { | |
| 17 namespace file_system_provider { | |
| 18 namespace util { | |
| 19 | |
| 20 // Constructs a safe mount point path for the provided file system. | |
| 21 base::FilePath GetMountPointPath(Profile* profile, | |
| 22 std::string extension_id, | |
| 23 int file_system_id); | |
| 24 | |
| 25 } // namespace util | |
| 26 } // namespace file_system_provider | |
| 27 } // namespace chromeos | |
| 28 | |
| 29 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_UTIL_H_ | |
| OLD | NEW |