// Copyright 2012 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_SAD_TAB_VIEW_H_ #define CHROME_BROWSER_UI_VIEWS_SAD_TAB_VIEW_H_ #include "base/memory/raw_ptr.h" #include "chrome/browser/ui/sad_tab.h" #include "ui/views/view.h" namespace content { class WebContents; } namespace views { class FlexLayoutView; class Label; class MdTextButton; class WebView; } // namespace views namespace test { class SadTabViewTestApi; } // namespace test namespace gfx { class RoundedCornersF; } // namespace gfx /////////////////////////////////////////////////////////////////////////////// // // SadTabView // // A views::View subclass used to render the presentation of the crashed // "sad tab" in the browser window when a renderer is destroyed unnaturally. // /////////////////////////////////////////////////////////////////////////////// class SadTabView : public SadTab, public views::View { … }; #endif // CHROME_BROWSER_UI_VIEWS_SAD_TAB_VIEW_H__