| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // We're trying to transition away from paths as wstrings into using | 5 // We're trying to transition away from paths as wstrings into using |
| 6 // FilePath objects. This file contains declarations of deprecated | 6 // FilePath objects. This file contains declarations of deprecated |
| 7 // functions. By hiding them here rather in the main header, we hope | 7 // functions. By hiding them here rather in the main header, we hope |
| 8 // to discourage callers. | 8 // to discourage callers. |
| 9 | 9 |
| 10 // See file_util.h for documentation on all functions that don't have | 10 // See file_util.h for documentation on all functions that don't have |
| 11 // documentation here. | 11 // documentation here. |
| 12 | 12 |
| 13 #ifndef BASE_FILE_UTIL_DEPRECATED_H_ | 13 #ifndef BASE_FILE_UTIL_DEPRECATED_H_ |
| 14 #define BASE_FILE_UTIL_DEPRECATED_H_ | 14 #define BASE_FILE_UTIL_DEPRECATED_H_ |
| 15 #pragma once | 15 #pragma once |
| 16 | 16 |
| 17 #include "base/base_api.h" | 17 #include "base/base_export.h" |
| 18 #include "build/build_config.h" | 18 #include "build/build_config.h" |
| 19 | 19 |
| 20 // We've successfully deprecated all of these functions on non-Windows | 20 // We've successfully deprecated all of these functions on non-Windows |
| 21 // platforms. | 21 // platforms. |
| 22 | 22 |
| 23 #if defined(OS_WIN) | 23 #if defined(OS_WIN) |
| 24 | 24 |
| 25 namespace file_util { | 25 namespace file_util { |
| 26 | 26 |
| 27 // Use the FilePath versions instead. | 27 // Use the FilePath versions instead. |
| 28 BASE_API FILE* OpenFile(const std::string& filename, const char* mode); | 28 BASE_EXPORT FILE* OpenFile(const std::string& filename, const char* mode); |
| 29 BASE_API FILE* OpenFile(const std::wstring& filename, const char* mode); | 29 BASE_EXPORT FILE* OpenFile(const std::wstring& filename, const char* mode); |
| 30 | 30 |
| 31 // Appends new_ending to path, adding a separator between the two if necessary. | 31 // Appends new_ending to path, adding a separator between the two if necessary. |
| 32 BASE_API void AppendToPath(std::wstring* path, const std::wstring& new_ending); | 32 BASE_EXPORT void AppendToPath(std::wstring* path, |
| 33 const std::wstring& new_ending); |
| 33 | 34 |
| 34 // Use FilePath::Extension instead. | 35 // Use FilePath::Extension instead. |
| 35 BASE_API std::wstring GetFileExtensionFromPath(const std::wstring& path); | 36 BASE_EXPORT std::wstring GetFileExtensionFromPath(const std::wstring& path); |
| 36 | 37 |
| 37 // Use version that takes a FilePath. | 38 // Use version that takes a FilePath. |
| 38 BASE_API bool Delete(const std::wstring& path, bool recursive); | 39 BASE_EXPORT bool Delete(const std::wstring& path, bool recursive); |
| 39 BASE_API bool CopyDirectory(const std::wstring& from_path, | 40 BASE_EXPORT bool CopyDirectory(const std::wstring& from_path, |
| 40 const std::wstring& to_path, | 41 const std::wstring& to_path, |
| 41 bool recursive); | 42 bool recursive); |
| 42 BASE_API int ReadFile(const std::wstring& filename, char* data, int size); | 43 BASE_EXPORT int ReadFile(const std::wstring& filename, char* data, int size); |
| 43 BASE_API int WriteFile(const std::wstring& filename, | 44 BASE_EXPORT int WriteFile(const std::wstring& filename, |
| 44 const char* data, int size); | 45 const char* data, int size); |
| 45 | 46 |
| 46 } | 47 } |
| 47 | 48 |
| 48 #endif // OS_WIN | 49 #endif // OS_WIN |
| 49 | 50 |
| 50 #endif // BASE_FILE_UTIL_DEPRECATED_H_ | 51 #endif // BASE_FILE_UTIL_DEPRECATED_H_ |
| OLD | NEW |