chromium/components/safe_browsing/core/browser/sync/safe_browsing_sync_observer_impl.h

// 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_SAFE_BROWSING_CORE_BROWSER_SYNC_SAFE_BROWSING_SYNC_OBSERVER_IMPL_H_
#define COMPONENTS_SAFE_BROWSING_CORE_BROWSER_SYNC_SAFE_BROWSING_SYNC_OBSERVER_IMPL_H_

#include "base/scoped_observation.h"
#include "components/safe_browsing/core/browser/safe_browsing_sync_observer.h"
#include "components/sync/service/sync_service.h"
#include "components/sync/service/sync_service_observer.h"

namespace syncer {
class SyncService;
}

namespace safe_browsing {

// This class observes sync events and notifies the observer.
class SafeBrowsingSyncObserverImpl : public SafeBrowsingSyncObserver,
                                     public syncer::SyncServiceObserver {};

}  // namespace safe_browsing

#endif  // COMPONENTS_SAFE_BROWSING_CORE_BROWSER_SYNC_SAFE_BROWSING_SYNC_OBSERVER_IMPL_H_