OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 // This file provides File API related utilities. | 5 // This file provides File API related utilities. |
6 | 6 |
7 #ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_FILEAPI_UTIL_H_ | 7 #ifndef CHROME_BROWSER_CHROMEOS_FILE_MANAGER_FILEAPI_UTIL_H_ |
8 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_FILEAPI_UTIL_H_ | 8 #define CHROME_BROWSER_CHROMEOS_FILE_MANAGER_FILEAPI_UTIL_H_ |
9 | 9 |
10 #include <string> | 10 #include <string> |
11 #include "url/gurl.h" | 11 #include "url/gurl.h" |
12 | 12 |
13 class Profile; | 13 class Profile; |
14 | 14 |
15 namespace base { | 15 namespace base { |
16 class FilePath; | 16 class FilePath; |
17 } | 17 } |
18 | 18 |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 // by the external filesystem provider. | 58 // by the external filesystem provider. |
59 bool ConvertAbsoluteFilePathToRelativeFileSystemPath( | 59 bool ConvertAbsoluteFilePathToRelativeFileSystemPath( |
60 Profile* profile, | 60 Profile* profile, |
61 const std::string& extension_id, | 61 const std::string& extension_id, |
62 const base::FilePath& absolute_path, | 62 const base::FilePath& absolute_path, |
63 base::FilePath* relative_path); | 63 base::FilePath* relative_path); |
64 | 64 |
65 } // namespace util | 65 } // namespace util |
66 } // namespace file_manager | 66 } // namespace file_manager |
67 | 67 |
68 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_FILEAPI_UTIL_H_ | 68 #endif // CHROME_BROWSER_CHROMEOS_FILE_MANAGER_FILEAPI_UTIL_H_ |
OLD | NEW |