chromium/chrome/browser/ui/views/enterprise/managed_menu_view.h

// Copyright 2024 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_UI_VIEWS_ENTERPRISE_MANAGED_MENU_VIEW_H_
#define CHROME_BROWSER_UI_VIEWS_ENTERPRISE_MANAGED_MENU_VIEW_H_

#include <memory>

#include "base/memory/weak_ptr.h"
#include "components/prefs/pref_change_registrar.h"
#include "ui/base/metadata/metadata_header_macros.h"
#include "ui/views/bubble/bubble_dialog_delegate_view.h"

namespace views {
class Button;
}

class Browser;
class Profile;

// This bubble view is displayed when the user clicks on the management button
// displays the management menu.
class ManagedMenuView : public views::BubbleDialogDelegateView {};

#endif  // CHROME_BROWSER_UI_VIEWS_ENTERPRISE_MANAGED_MENU_VIEW_H_