// Copyright 2012 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_H_ #define COMPONENTS_WEBDATA_COMMON_WEB_DATABASE_H_ #include <map> #include <string> #include "base/files/file_path.h" #include "base/memory/raw_ptr.h" #include "components/webdata/common/web_database_table.h" #include "components/webdata/common/webdata_export.h" #include "sql/database.h" #include "sql/init_status.h" #include "sql/meta_table.h" // This class manages a SQLite database that stores various web page meta data. class WEBDATA_EXPORT WebDatabase { … }; #endif // COMPONENTS_WEBDATA_COMMON_WEB_DATABASE_H_