Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1376)

Side by Side Diff: base/file_util_deprecated.h

Issue 9585001: Cleanup: Remove deprecated version of file_util::AppendToPath(). (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « base/file_util.cc ('k') | base/file_util_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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
(...skipping 12 matching lines...) Expand all
23 #if !defined(OS_WIN) 23 #if !defined(OS_WIN)
24 #error Do not include on non-Windows platforms. 24 #error Do not include on non-Windows platforms.
25 #endif 25 #endif
26 26
27 namespace file_util { 27 namespace file_util {
28 28
29 // Use the FilePath versions instead. 29 // Use the FilePath versions instead.
30 BASE_EXPORT FILE* OpenFile(const std::string& filename, const char* mode); 30 BASE_EXPORT FILE* OpenFile(const std::string& filename, const char* mode);
31 BASE_EXPORT FILE* OpenFile(const std::wstring& filename, const char* mode); 31 BASE_EXPORT FILE* OpenFile(const std::wstring& filename, const char* mode);
32 32
33 // Appends new_ending to path, adding a separator between the two if necessary.
34 BASE_EXPORT void AppendToPath(std::wstring* path,
35 const std::wstring& new_ending);
36
37 // Use version that takes a FilePath. 33 // Use version that takes a FilePath.
38 BASE_EXPORT int ReadFile(const std::wstring& filename, char* data, int size); 34 BASE_EXPORT int ReadFile(const std::wstring& filename, char* data, int size);
39 BASE_EXPORT int WriteFile(const std::wstring& filename, 35 BASE_EXPORT int WriteFile(const std::wstring& filename,
40 const char* data, int size); 36 const char* data, int size);
41 37
42 } // namespace file_util 38 } // namespace file_util
43 39
44 #endif // BASE_FILE_UTIL_DEPRECATED_H_ 40 #endif // BASE_FILE_UTIL_DEPRECATED_H_
OLDNEW
« no previous file with comments | « base/file_util.cc ('k') | base/file_util_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698