#ifndef COMPONENTS_POWER_BOOKMARKS_STORAGE_POWER_BOOKMARK_BACKEND_H_
#define COMPONENTS_POWER_BOOKMARKS_STORAGE_POWER_BOOKMARK_BACKEND_H_
#include <memory>
#include "base/files/file_path.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/ref_counted.h"
#include "base/sequence_checker.h"
#include "components/power_bookmarks/common/power_bookmark_observer.h"
#include "components/power_bookmarks/storage/power_bookmark_database.h"
#include "components/power_bookmarks/storage/power_bookmark_sync_bridge.h"
#include "components/sync/protocol/power_bookmark_specifics.pb.h"
namespace syncer {
class DataTypeControllerDelegate;
}
namespace power_bookmarks {
struct SearchParams;
class PowerBookmarkBackend : public PowerBookmarkSyncBridge::Delegate { … };
}
#endif