#ifndef COMPONENTS_DRIVE_FILE_SYSTEM_CORE_UTIL_H_
#define COMPONENTS_DRIVE_FILE_SYSTEM_CORE_UTIL_H_
#include <string>
#include "base/files/file_path.h"
#include "components/drive/file_errors.h"
#include "url/gurl.h"
namespace drive {
namespace util {
const char kDriveGrandRootLocalId[] = …;
const char kDriveOtherDirLocalId[] = …;
const char kDriveTeamDrivesDirLocalId[] = …;
constexpr char kDriveComputersDirLocalId[] = …;
const char kDriveTrashDirLocalId[] = …;
const char kDriveGrandRootDirName[] = …;
const char kDriveMyDriveRootDirName[] = …;
const char kDriveOtherDirName[] = …;
const char kDriveTeamDrivesDirName[] = …;
constexpr char kDriveComputersDirName[] = …;
const char kDriveTrashDirName[] = …;
constexpr char kTeamDriveIdDefaultCorpus[] = …;
const base::FilePath& GetDriveGrandRootPath();
std::string ConvertChangestampToStartPageToken(int64_t changestamp);
struct DestroyHelper { … };
GURL ReadUrlFromGDocFile(const base::FilePath& file_path);
std::string ReadResourceIdFromGDocFile(const base::FilePath& file_path);
}
}
#endif