| 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, and filename_util_icu. |
| 6 // filename_util_unsafe. | |
| 7 | 6 |
| 8 #ifndef NET_BASE_FILENAME_UTIL_INTERNAL_H_ | 7 #ifndef NET_BASE_FILENAME_UTIL_INTERNAL_H_ |
| 9 #define NET_BASE_FILENAME_UTIL_INTERNAL_H_ | 8 #define NET_BASE_FILENAME_UTIL_INTERNAL_H_ |
| 10 | 9 |
| 11 #include <string> | 10 #include <string> |
| 12 | 11 |
| 13 #include "base/callback.h" | 12 #include "base/callback.h" |
| 14 #include "base/files/file_path.h" | 13 #include "base/files/file_path.h" |
| 15 #include "base/strings/string16.h" | 14 #include "base/strings/string16.h" |
| 16 | 15 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 const std::string& content_disposition, | 52 const std::string& content_disposition, |
| 54 const std::string& referrer_charset, | 53 const std::string& referrer_charset, |
| 55 const std::string& suggested_name, | 54 const std::string& suggested_name, |
| 56 const std::string& mime_type, | 55 const std::string& mime_type, |
| 57 const std::string& default_name, | 56 const std::string& default_name, |
| 58 ReplaceIllegalCharactersCallback replace_illegal_characters_callback); | 57 ReplaceIllegalCharactersCallback replace_illegal_characters_callback); |
| 59 | 58 |
| 60 } // namespace net | 59 } // namespace net |
| 61 | 60 |
| 62 #endif // NET_BASE_FILENAME_UTIL_INTERNAL_H_ | 61 #endif // NET_BASE_FILENAME_UTIL_INTERNAL_H_ |
| OLD | NEW |