| OLD | NEW |
| (Empty) |
| 1 // Copyright 2013 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 // This file provides utilities related to the select file dialog. | |
| 6 | |
| 7 #ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_SELECT_FILE_DIALOG_UTIL_
H_ | |
| 8 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_SELECT_FILE_DIALOG_UTIL_
H_ | |
| 9 | |
| 10 #include "ui/shell_dialogs/select_file_dialog.h" | |
| 11 | |
| 12 namespace file_manager { | |
| 13 namespace util { | |
| 14 | |
| 15 // Get file dialog title string from its type. | |
| 16 string16 GetSelectFileDialogTitle(ui::SelectFileDialog::Type type); | |
| 17 | |
| 18 } // namespace util | |
| 19 } // namespace file_manager | |
| 20 | |
| 21 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_SELECT_FILE_DIALOG_UT
IL_H_ | |
| OLD | NEW |