// Copyright 2018 The Chromium Authors // 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 <memory> #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 { … }; } // namespace views #endif // UI_VIEWS_BUBBLE_FOOTNOTE_CONTAINER_VIEW_H_