// Copyright 2011 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_INFOBARS_INFOBAR_CONTAINER_VIEW_H_ #define CHROME_BROWSER_UI_VIEWS_INFOBARS_INFOBAR_CONTAINER_VIEW_H_ #include <stddef.h> #include "base/memory/raw_ptr.h" #include "components/infobars/core/infobar_container.h" #include "ui/base/metadata/metadata_header_macros.h" #include "ui/views/accessible_pane_view.h" #include "ui/views/view_targeter_delegate.h" // The views-specific implementation of InfoBarContainer. class InfoBarContainerView : public views::AccessiblePaneView, public infobars::InfoBarContainer { … }; #endif // CHROME_BROWSER_UI_VIEWS_INFOBARS_INFOBAR_CONTAINER_VIEW_H_