| 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 URL-related utilities. | 5 // This file provides URL-related utilities. |
| 6 | 6 |
| 7 #ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_URL_UTIL_H_ | 7 #ifndef CHROME_BROWSER_CHROMEOS_FILE_MANAGER_URL_UTIL_H_ |
| 8 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_URL_UTIL_H_ | 8 #define CHROME_BROWSER_CHROMEOS_FILE_MANAGER_URL_UTIL_H_ |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "base/strings/string16.h" | 12 #include "base/strings/string16.h" |
| 13 #include "ui/shell_dialogs/select_file_dialog.h" | 13 #include "ui/shell_dialogs/select_file_dialog.h" |
| 14 #include "url/gurl.h" | 14 #include "url/gurl.h" |
| 15 | 15 |
| 16 namespace base { | 16 namespace base { |
| 17 class FilePath; | 17 class FilePath; |
| 18 } | 18 } |
| (...skipping 18 matching lines...) Expand all Loading... |
| 37 int file_type_index, | 37 int file_type_index, |
| 38 const base::FilePath::StringType& default_extension); | 38 const base::FilePath::StringType& default_extension); |
| 39 | 39 |
| 40 // Returns the file manager's action choice URL. | 40 // Returns the file manager's action choice URL. |
| 41 GURL GetActionChoiceUrl(const base::FilePath& virtual_path, | 41 GURL GetActionChoiceUrl(const base::FilePath& virtual_path, |
| 42 bool advanced_mode); | 42 bool advanced_mode); |
| 43 | 43 |
| 44 } // namespace util | 44 } // namespace util |
| 45 } // namespace file_manager | 45 } // namespace file_manager |
| 46 | 46 |
| 47 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_URL_UTIL_H_ | 47 #endif // CHROME_BROWSER_CHROMEOS_FILE_MANAGER_URL_UTIL_H_ |
| OLD | NEW |