chromium/components/feature_engagement/internal/display_lock_controller_impl.h

// Copyright 2017 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_FEATURE_ENGAGEMENT_INTERNAL_DISPLAY_LOCK_CONTROLLER_IMPL_H_
#define COMPONENTS_FEATURE_ENGAGEMENT_INTERNAL_DISPLAY_LOCK_CONTROLLER_IMPL_H_

#include <memory>
#include <set>

#include "base/memory/weak_ptr.h"
#include "base/threading/thread_checker.h"
#include "components/feature_engagement/internal/display_lock_controller.h"
#include "components/feature_engagement/public/tracker.h"

namespace feature_engagement {
class DisplayLockHandle;

// The default implementation of the DisplayLockController.
class DisplayLockControllerImpl : public DisplayLockController {};

}  // namespace feature_engagement

#endif  // COMPONENTS_FEATURE_ENGAGEMENT_INTERNAL_DISPLAY_LOCK_CONTROLLER_IMPL_H_