#include "components/drive/file_system_core_util.h"
#include <stddef.h>
#include <stdint.h>
#include <memory>
#include <string>
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/json/json_file_value_serializer.h"
#include "base/logging.h"
#include "base/no_destructor.h"
#include "base/strings/string_number_conversions.h"
#include "base/values.h"
namespace drive {
namespace util {
namespace {
std::string ReadStringFromGDocFile(const base::FilePath& file_path,
const std::string& key) { … }
}
const base::FilePath& GetDriveGrandRootPath() { … }
std::string ConvertChangestampToStartPageToken(int64_t changestamp) { … }
GURL ReadUrlFromGDocFile(const base::FilePath& file_path) { … }
std::string ReadResourceIdFromGDocFile(const base::FilePath& file_path) { … }
}
}