Index: chrome/browser/ui/web_feedback_ui.h |
diff --git a/chrome/browser/ui/web_feedback_ui.h b/chrome/browser/ui/web_feedback_ui.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e8e033d1d013fe9ef45aa5398d4988cf84b261d4 |
--- /dev/null |
+++ b/chrome/browser/ui/web_feedback_ui.h |
@@ -0,0 +1,20 @@ |
+// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CHROME_BROWSER_UI_WEB_FEEDBACK_UI_H_ |
+#define CHROME_BROWSER_UI_WEB_FEEDBACK_UI_H_ |
+ |
+#include <string> |
+ |
+class Browser; |
+ |
+namespace chrome { |
+ |
+void ShowFeedbackUI(Browser* browser, |
+ const std::string& description_template, |
+ const std::string& category_tag); |
Ben Goodger (Google)
2012/08/01 15:20:22
Maybe this can go into chrome/browser/ui/chrome_pa
|
+ |
+} // namespace chrome |
+ |
+#endif // CHROME_BROWSER_UI_WEB_FEEDBACK_UI_H_ |