Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_UI_WEB_FEEDBACK_UI_H_ | |
| 6 #define CHROME_BROWSER_UI_WEB_FEEDBACK_UI_H_ | |
| 7 | |
| 8 #include <string> | |
| 9 | |
| 10 class Browser; | |
| 11 | |
| 12 namespace chrome { | |
| 13 | |
| 14 void ShowFeedbackUI(Browser* browser, | |
| 15 const std::string& description_template, | |
| 16 const std::string& category_tag); | |
|
Ben Goodger (Google)
2012/08/01 15:20:22
Maybe this can go into chrome/browser/ui/chrome_pa
| |
| 17 | |
| 18 } // namespace chrome | |
| 19 | |
| 20 #endif // CHROME_BROWSER_UI_WEB_FEEDBACK_UI_H_ | |
| OLD | NEW |