chromium/components/offline_pages/core/offline_store_utils.cc

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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() {}

}  // namespace store_utils

}  // namespace offline_pages