chromium/chrome/browser/supervised_user/chrome_supervised_user_web_content_handler_base.h

// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CHROME_BROWSER_SUPERVISED_USER_CHROME_SUPERVISED_USER_WEB_CONTENT_HANDLER_BASE_H_
#define CHROME_BROWSER_SUPERVISED_USER_CHROME_SUPERVISED_USER_WEB_CONTENT_HANDLER_BASE_H_

#include "base/memory/raw_ptr.h"
#include "components/supervised_user/core/browser/web_content_handler.h"

namespace content {
class WebContents;
}  // namespace content

// Implements common Web Content Handler functionality that can be shared
// accross non-IOS platforms, but cannot belong in the base class due to
// prohibited dependencies in components.
class ChromeSupervisedUserWebContentHandlerBase
    : public supervised_user::WebContentHandler {};

#endif  // CHROME_BROWSER_SUPERVISED_USER_CHROME_SUPERVISED_USER_WEB_CONTENT_HANDLER_BASE_H_