chromium/components/history/core/browser/in_memory_database.cc

// Copyright 2014 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/history/core/browser/in_memory_database.h"

#include <tuple>

#include "base/files/file_path.h"
#include "base/metrics/histogram_macros.h"
#include "base/notreached.h"

namespace history {

InMemoryDatabase::InMemoryDatabase()
    :{}

InMemoryDatabase::~InMemoryDatabase() = default;

bool InMemoryDatabase::InitDB() {}

bool InMemoryDatabase::InitFromScratch() {}

bool InMemoryDatabase::InitFromDisk(const base::FilePath& history_name) {}

sql::Database& InMemoryDatabase::GetDB() {}

}  // namespace history