chromium/storage/browser/database/databases_table.h

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

#ifndef STORAGE_BROWSER_DATABASE_DATABASES_TABLE_H_
#define STORAGE_BROWSER_DATABASE_DATABASES_TABLE_H_

#include <stdint.h>

#include <string>
#include <vector>

#include "base/component_export.h"
#include "base/memory/raw_ptr.h"

namespace sql {
class Database;
}

namespace storage {

struct COMPONENT_EXPORT(STORAGE_BROWSER) DatabaseDetails {};

class COMPONENT_EXPORT(STORAGE_BROWSER) DatabasesTable {};

}  // namespace storage

#endif  // STORAGE_BROWSER_DATABASE_DATABASES_TABLE_H_