// Copyright 2021 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_PAGE_INFO_SECURITY_INFORMATION_VIEW_H_ #define CHROME_BROWSER_UI_VIEWS_PAGE_INFO_SECURITY_INFORMATION_VIEW_H_ #include "base/memory/raw_ptr.h" #include "components/page_info/page_info.h" #include "ui/views/controls/button/button.h" #include "ui/views/controls/link.h" #include "ui/views/view.h" namespace views { class StyledLabel; } // namespace views class NonAccessibleImageView; // View that represents the header of the page info bubble. The header shows the // status of the site's identity check and the name of the site's identity. class SecurityInformationView : public views::View { … }; #endif // CHROME_BROWSER_UI_VIEWS_PAGE_INFO_SECURITY_INFORMATION_VIEW_H_