#include "components/offline_pages/core/offline_store_utils.h"
#include <limits>
#include <string>
#include "base/files/file_util.h"
#include "base/rand_util.h"
#include "base/time/time.h"
namespace offline_pages {
namespace store_utils {
int64_t ToDatabaseTime(base::Time time) { … }
base::Time FromDatabaseTime(int64_t serialized_time) { … }
std::string ToDatabaseFilePath(const base::FilePath& file_path) { … }
base::FilePath FromDatabaseFilePath(const std::string& file_path_string) { … }
int64_t GenerateOfflineId() { … }
}
}