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
11namespace gfx {
12class Rect;
13}  // namespace gfx
14
15class Browser;
16class NSWindow;
17class TabContents;
18
19namespace browser {
20void ShowHtmlBugReportView(Browser* browser);
21}  // namespace browser
22
23class 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