OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 // | 4 // |
5 // This file provides utilities related to the select file dialog. | 5 // This file provides utilities related to the select file dialog. |
6 | 6 |
7 #ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_SELECT_FILE_DIALOG_UTIL_
H_ | 7 #ifndef CHROME_BROWSER_CHROMEOS_FILE_MANAGER_SELECT_FILE_DIALOG_UTIL_H_ |
8 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_SELECT_FILE_DIALOG_UTIL_
H_ | 8 #define CHROME_BROWSER_CHROMEOS_FILE_MANAGER_SELECT_FILE_DIALOG_UTIL_H_ |
9 | 9 |
10 #include "ui/shell_dialogs/select_file_dialog.h" | 10 #include "ui/shell_dialogs/select_file_dialog.h" |
11 | 11 |
12 namespace file_manager { | 12 namespace file_manager { |
13 namespace util { | 13 namespace util { |
14 | 14 |
15 // Get file dialog title string from its type. | 15 // Get file dialog title string from its type. |
16 string16 GetSelectFileDialogTitle(ui::SelectFileDialog::Type type); | 16 string16 GetSelectFileDialogTitle(ui::SelectFileDialog::Type type); |
17 | 17 |
18 } // namespace util | 18 } // namespace util |
19 } // namespace file_manager | 19 } // namespace file_manager |
20 | 20 |
21 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_SELECT_FILE_DIALOG_UT
IL_H_ | 21 #endif // CHROME_BROWSER_CHROMEOS_FILE_MANAGER_SELECT_FILE_DIALOG_UTIL_H_ |
OLD | NEW |