Chromium Code Reviews| Index: chrome/browser/ui/webui/feedback_ui.h |
| diff --git a/chrome/browser/ui/webui/bug_report_ui.h b/chrome/browser/ui/webui/feedback_ui.h |
| similarity index 50% |
| rename from chrome/browser/ui/webui/bug_report_ui.h |
| rename to chrome/browser/ui/webui/feedback_ui.h |
| index 9f3cd2ce3b4fc7502ebf5c1ad131a3bcadf6f510..e300cedb409d67e5e4b506fc37104e8e65c65e70 100644 |
| --- a/chrome/browser/ui/webui/bug_report_ui.h |
| +++ b/chrome/browser/ui/webui/feedback_ui.h |
| @@ -2,8 +2,8 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| -#ifndef CHROME_BROWSER_UI_WEBUI_BUG_REPORT_UI_H_ |
| -#define CHROME_BROWSER_UI_WEBUI_BUG_REPORT_UI_H_ |
| +#ifndef CHROME_BROWSER_UI_WEBUI_FEEDBACK_UI_H_ |
| +#define CHROME_BROWSER_UI_WEBUI_FEEDBACK_UI_H_ |
| #include <string> |
| @@ -12,17 +12,17 @@ |
| class Browser; |
| namespace browser { |
| -void ShowHtmlBugReportView(Browser* browser, |
| +void ShowHtmlFeedbackView(Browser* browser, |
| const std::string& description_template, |
| - size_t issue_type); |
| + const std::string& category_tag); |
|
sky
2012/01/05 22:20:15
nit: fix spacing on lines 16/17.
|
| } // namespace browser |
| -class BugReportUI : public HtmlDialogUI { |
| +class FeedbackUI : public HtmlDialogUI { |
| public: |
| - explicit BugReportUI(content::WebContents* contents); |
| + explicit FeedbackUI(content::WebContents* contents); |
| private: |
| - DISALLOW_COPY_AND_ASSIGN(BugReportUI); |
| + DISALLOW_COPY_AND_ASSIGN(FeedbackUI); |
| }; |
| -#endif // CHROME_BROWSER_UI_WEBUI_BUG_REPORT_UI_H_ |
| +#endif // CHROME_BROWSER_UI_WEBUI_FEEDBACK_UI_H_ |