chromium/components/webdata/common/web_database_table.h

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

#ifndef COMPONENTS_WEBDATA_COMMON_WEB_DATABASE_TABLE_H_
#define COMPONENTS_WEBDATA_COMMON_WEB_DATABASE_TABLE_H_

#include "base/memory/raw_ptr.h"
#include "components/webdata/common/webdata_export.h"

namespace sql {
class Database;
class MetaTable;
}

// An abstract base class representing a table within a WebDatabase.
// Each table should subclass this, adding type-specific methods as needed.
class WEBDATA_EXPORT WebDatabaseTable {};

#endif  // COMPONENTS_WEBDATA_COMMON_WEB_DATABASE_TABLE_H_