mirror of
https://github.com/bolucat/Archive.git
synced 2025-09-26 20:21:35 +08:00
Update On Thu Nov 21 19:38:21 CET 2024
This commit is contained in:
@@ -5,23 +5,34 @@
|
||||
#include "base/android/content_uri_utils.h"
|
||||
|
||||
namespace base {
|
||||
namespace internal {
|
||||
|
||||
bool ContentUriExists(const FilePath&) {
|
||||
return false;
|
||||
}
|
||||
|
||||
std::optional<std::string> TranslateOpenFlagsToJavaMode(uint32_t) {
|
||||
return {};
|
||||
}
|
||||
|
||||
File OpenContentUri(const FilePath&, uint32_t) {
|
||||
return {};
|
||||
}
|
||||
|
||||
int64_t GetContentUriFileSize(const FilePath&) {
|
||||
int OpenContentUri(const FilePath&, uint32_t) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
bool ContentUriExists(const FilePath&) {
|
||||
bool ContentUriGetFileInfo(const FilePath&, File::Info*) {
|
||||
return false;
|
||||
}
|
||||
|
||||
std::vector<FileEnumerator::FileInfo> ListContentUriDirectory(const FilePath&) {
|
||||
return {};
|
||||
}
|
||||
|
||||
bool DeleteContentUri(const FilePath& content_uri) {
|
||||
return false;
|
||||
}
|
||||
|
||||
} // namespace internal
|
||||
|
||||
std::string GetContentUriMimeType(const FilePath& content_uri) {
|
||||
return {};
|
||||
}
|
||||
@@ -31,8 +42,8 @@ bool MaybeGetFileDisplayName(const FilePath& content_uri,
|
||||
return false;
|
||||
}
|
||||
|
||||
bool DeleteContentUri(const FilePath& content_uri) {
|
||||
return false;
|
||||
FilePath ContentUriBuildDocumentUriUsingTree(const FilePath&,
|
||||
const std::string&) {
|
||||
return {};
|
||||
}
|
||||
|
||||
} // namespace base
|
||||
|
Reference in New Issue
Block a user