12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #ifndef BASE_ANDROID_PATH_UTILS_H_
- #define BASE_ANDROID_PATH_UTILS_H_
- #include <jni.h>
- #include <vector>
- #include "base/base_export.h"
- namespace base {
- class FilePath;
- namespace android {
- BASE_EXPORT bool GetDataDirectory(FilePath* result);
- BASE_EXPORT bool GetCacheDirectory(FilePath* result);
- BASE_EXPORT bool GetThumbnailCacheDirectory(FilePath* result);
- BASE_EXPORT bool GetDownloadsDirectory(FilePath* result);
- BASE_EXPORT std::vector<FilePath> GetAllPrivateDownloadsDirectories();
- BASE_EXPORT bool GetNativeLibraryDirectory(FilePath* result);
- BASE_EXPORT bool GetExternalStorageDirectory(FilePath* result);
- }
- }
- #endif
|