// Copyright 2022 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_POWER_BOOKMARKS_STORAGE_EMPTY_POWER_BOOKMARK_DATABASE_H_ #define COMPONENTS_POWER_BOOKMARKS_STORAGE_EMPTY_POWER_BOOKMARK_DATABASE_H_ #include "components/power_bookmarks/common/power.h" #include "components/power_bookmarks/common/power_overview.h" #include "components/power_bookmarks/storage/power_bookmark_database.h" #include "url/gurl.h" namespace power_bookmarks { struct SearchParams; // Fake database to substitute when the feature is disabled. class EmptyPowerBookmarkDatabase : public PowerBookmarkDatabase { … }; } // namespace power_bookmarks #endif // COMPONENTS_POWER_BOOKMARKS_STORAGE_EMPTY_POWER_BOOKMARK_DATABASE_H_