1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef CHROME_BROWSER_UI_WEBUI_BUG_REPORT_UI_H_ 6 #define CHROME_BROWSER_UI_WEBUI_BUG_REPORT_UI_H_ 7 8 #include "chrome/browser/ui/views/window.h" 9 #include "chrome/browser/ui/webui/html_dialog_ui.h" 10 11 namespace gfx { 12 class Rect; 13 } // namespace gfx 14 15 class Browser; 16 class NSWindow; 17 class TabContents; 18 19 namespace browser { 20 void ShowHtmlBugReportView(Browser* browser); 21 } // namespace browser 22 23 class BugReportUI : public HtmlDialogUI { 24 public: 25 explicit BugReportUI(TabContents* contents); 26 private: 27 28 DISALLOW_COPY_AND_ASSIGN(BugReportUI); 29 }; 30 31 #endif // CHROME_BROWSER_UI_WEBUI_BUG_REPORT_UI_H_ 32