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_WEBUI_FEEDBACK_UI_H_ 6 #define CHROME_BROWSER_UI_WEBUI_FEEDBACK_UI_H_ 7 8 #include <string> 9 10 #include "base/basictypes.h" 11 #include "ui/web_dialogs/web_dialog_ui.h" 12 13 namespace base { 14 class FilePath; 15 } 16 17 class FeedbackUI : public ui::WebDialogUI { 18 public: 19 explicit FeedbackUI(content::WebUI* web_ui); 20 21 #if defined(OS_CHROMEOS) 22 static void GetMostRecentScreenshots( 23 const base::FilePath& filepath, 24 std::vector<std::string>* saved_screenshots, 25 size_t max_saved); 26 #endif 27 28 private: 29 DISALLOW_COPY_AND_ASSIGN(FeedbackUI); 30 }; 31 32 #endif // CHROME_BROWSER_UI_WEBUI_FEEDBACK_UI_H_ 33