123456789101112131415161718192021222324252627282930313233343536 |
- #ifndef BASE_NIX_MIME_UTIL_XDG_H_
- #define BASE_NIX_MIME_UTIL_XDG_H_
- #include <string>
- #include "base/base_export.h"
- #include "build/build_config.h"
- namespace base {
- class FilePath;
- namespace nix {
- BASE_EXPORT std::string GetFileMimeType(const FilePath& filepath);
- }
- }
- #endif
|