Index: chrome/browser/ui/webui/feedback_ui.cc |
diff --git a/chrome/browser/ui/webui/feedback_ui.cc b/chrome/browser/ui/webui/feedback_ui.cc |
index 9ebee7001b46b337030d2f46f2dc2a9808ac6714..1e75e5491c74ef1e528debcc53fdbc592cbc9129 100644 |
--- a/chrome/browser/ui/webui/feedback_ui.cc |
+++ b/chrome/browser/ui/webui/feedback_ui.cc |
@@ -31,6 +31,7 @@ |
#include "chrome/browser/ui/browser_window.h" |
#include "chrome/browser/ui/singleton_tabs.h" |
#include "chrome/browser/ui/tab_contents/tab_contents.h" |
+#include "chrome/browser/ui/web_feedback_ui.h" |
#include "chrome/browser/ui/webui/chrome_url_data_manager.h" |
#include "chrome/browser/ui/webui/chrome_web_ui_data_source.h" |
#include "chrome/browser/ui/webui/screenshot_source.h" |
@@ -147,12 +148,11 @@ int GetIndexOfFeedbackTab(Browser* browser) { |
} // namespace |
+namespace chrome { |
-namespace browser { |
- |
-void ShowWebFeedbackView(Browser* browser, |
- const std::string& description_template, |
- const std::string& category_tag) { |
+void ShowFeedbackUI(Browser* browser, |
+ const std::string& description_template, |
+ const std::string& category_tag) { |
#if defined(OS_CHROMEOS) |
// Grab the timestamp before we do anything else - this is crucial to help |
// diagnose some hardware issues. |
@@ -206,7 +206,7 @@ void ShowWebFeedbackView(Browser* browser, |
chrome::ShowSingletonTab(browser, GURL(feedback_url)); |
} |
-} // namespace browser |
+} // namespace chrome |
// The handler for Javascript messages related to the "bug report" dialog |
class FeedbackHandler : public WebUIMessageHandler, |