Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5543)

Unified Diff: chrome/browser/ui/webui/feedback_ui.h

Issue 9006003: Refactor and fix feedback (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge Created 8 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/webui/chrome_web_ui_factory.cc ('k') | chrome/browser/ui/webui/feedback_ui.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_
« no previous file with comments | « chrome/browser/ui/webui/chrome_web_ui_factory.cc ('k') | chrome/browser/ui/webui/feedback_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698