chromium/chrome/browser/ui/views/profiles/profile_customization_bubble_view.h

// Copyright 2020 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_PROFILES_PROFILE_CUSTOMIZATION_BUBBLE_VIEW_H_
#define CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_CUSTOMIZATION_BUBBLE_VIEW_H_

#include "base/gtest_prod_util.h"
#include "chrome/browser/ui/webui/signin/profile_customization_handler.h"
#include "ui/base/metadata/metadata_header_macros.h"
#include "ui/views/bubble/bubble_dialog_delegate_view.h"

namespace views {
class View;
}  // namespace views

class Browser;
class Profile;

// This bubble is implemented as a WebUI page rendered inside a native bubble.
// After the bubble is closed, a IPH for profile switching may be shown.
class ProfileCustomizationBubbleView : public views::BubbleDialogDelegateView {};

#endif  // CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_CUSTOMIZATION_BUBBLE_VIEW_H_