blob: 2b4bea9235fc019acefc78621d6a9157ffa55ddb [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef UI_VIEWS_BUBBLE_FOOTNOTE_CONTAINER_VIEW_H_
#define UI_VIEWS_BUBBLE_FOOTNOTE_CONTAINER_VIEW_H_
#include "ui/views/view.h"
namespace views {
// A container that changes visibility with its contents, and draws a solid
// background with rounded corners at the bottom.
class FootnoteContainerView : public View {
public:
FootnoteContainerView(const gfx::Insets& margins,
View* child_view,
float corner_radius);
~FootnoteContainerView() override;
void SetCornerRadius(float corner_radius);
// View:
void ChildVisibilityChanged(View* child) override;
private:
DISALLOW_IMPLICIT_CONSTRUCTORS(FootnoteContainerView);
};
} // namespace views
#endif // UI_VIEWS_BUBBLE_FOOTNOTE_CONTAINER_VIEW_H_