chromium/components/shared_highlighting/browser/shared_highlighting_manager.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_SHARED_HIGHLIGHTING_BROWSER_SHARED_HIGHLIGHTING_MANAGER_H_
#define COMPONENTS_SHARED_HIGHLIGHTING_BROWSER_SHARED_HIGHLIGHTING_MANAGER_H_

#include "content/public/browser/page.h"
#include "content/public/browser/page_user_data.h"

namespace shared_highlighting {

class SharedHighlightingManager
    : public content::PageUserData<SharedHighlightingManager> {};

}  // namespace shared_highlighting

#endif  // COMPONENTS_SHARED_HIGHLIGHTING_BROWSER_SHARED_HIGHLIGHTING_MANAGER_H_