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