| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 // Functions used internally by filename_util, filename_util_icu and | 5 // Functions used internally by filename_util, filename_util_icu and |
| 6 // filename_util_unsafe. | 6 // filename_util_unsafe. |
| 7 | 7 |
| 8 #ifndef NET_BASE_FILENAME_UTIL_INTERNAL_H_ | 8 #ifndef NET_BASE_FILENAME_UTIL_INTERNAL_H_ |
| 9 #define NET_BASE_FILENAME_UTIL_INTERNAL_H_ | 9 #define NET_BASE_FILENAME_UTIL_INTERNAL_H_ |
| 10 | 10 |
| 11 #include <string> | 11 #include <string> |
| 12 | 12 |
| 13 #include "base/callback.h" | 13 #include "base/callback.h" |
| 14 #include "base/files/file_path.h" | 14 #include "base/files/file_path.h" |
| 15 #include "base/strings/string16.h" | 15 #include "base/strings/string16.h" |
| 16 | 16 |
| 17 class GURL; | 17 class GURL; |
| 18 | 18 |
| 19 namespace net { | 19 namespace net { |
| 20 | 20 |
| 21 typedef base::Callback< | 21 extern const char kReplacement; |
| 22 void(base::FilePath::StringType* file_name, char replace_char)> | |
| 23 ReplaceIllegalCharactersCallback; | |
| 24 | 22 |
| 25 void SanitizeGeneratedFileName(base::FilePath::StringType* filename, | 23 // See documentation at filename_util_internal.cc |
| 26 bool replace_trailing); | 24 std::string SelectUnsafeDownloadFilename( |
| 27 | |
| 28 bool IsShellIntegratedExtension(const base::FilePath::StringType& extension); | |
| 29 | |
| 30 bool IsReservedName(const base::FilePath::StringType& filename); | |
| 31 | |
| 32 void EnsureSafeExtension(const std::string& mime_type, | |
| 33 bool ignore_extension, | |
| 34 base::FilePath* file_name); | |
| 35 | |
| 36 bool FilePathToString16(const base::FilePath& path, base::string16* converted); | |
| 37 | |
| 38 // Similar to GetSuggestedFilename(), but takes callback to replace illegal | |
| 39 // characters. | |
| 40 base::string16 GetSuggestedFilenameImpl( | |
| 41 const GURL& url, | 25 const GURL& url, |
| 42 const std::string& content_disposition, | 26 const std::string& content_disposition, |
| 43 const std::string& referrer_charset, | 27 const std::string& referrer_charset, |
| 44 const std::string& suggested_name, | 28 const std::string& suggested_name, |
| 45 const std::string& mime_type, | 29 const std::string& mime_type, |
| 46 const std::string& default_name, | 30 const std::string& default_name, |
| 47 ReplaceIllegalCharactersCallback replace_illegal_characters_callback); | 31 ExtensionGenerationOption* extension_option); |
| 48 | 32 |
| 49 // Similar to GenerateFileName(), but takes callback to replace illegal | 33 // See documentation at filename_util_internal.cc |
| 50 // characters. | 34 void EnsureSafeFilenameInternal(const std::string& mime_type, |
| 51 base::FilePath GenerateFileNameImpl( | 35 ExtensionGenerationOption option, |
| 52 const GURL& url, | 36 base::FilePath* filename); |
| 53 const std::string& content_disposition, | |
| 54 const std::string& referrer_charset, | |
| 55 const std::string& suggested_name, | |
| 56 const std::string& mime_type, | |
| 57 const std::string& default_name, | |
| 58 ReplaceIllegalCharactersCallback replace_illegal_characters_callback); | |
| 59 | 37 |
| 60 } // namespace net | 38 } // namespace net |
| 61 | 39 |
| 62 #endif // NET_BASE_FILENAME_UTIL_INTERNAL_H_ | 40 #endif // NET_BASE_FILENAME_UTIL_INTERNAL_H_ |
| OLD | NEW |