Index: base/file_util.h |
=================================================================== |
--- base/file_util.h (revision 83634) |
+++ base/file_util.h (working copy) |
@@ -343,7 +343,7 @@ |
#if defined(OS_POSIX) |
// Store inode number of |path| in |inode|. Return true on success. |
-BASE_API bool GetInode(const FilePath& path, ino_t* inode); |
+bool GetInode(const FilePath& path, ino_t* inode); |
#endif |
// Wrapper for fopen-like calls. Returns non-NULL FILE* on success. |
@@ -365,7 +365,7 @@ |
BASE_API int WriteFile(const FilePath& filename, const char* data, int size); |
#if defined(OS_POSIX) |
// Append the data to |fd|. Does not close |fd| when done. |
-BASE_API int WriteFileDescriptor(const int fd, const char* data, int size); |
+int WriteFileDescriptor(const int fd, const char* data, int size); |
#endif |
// Gets the current working directory for the process. |
@@ -648,7 +648,7 @@ |
// Attempts determine the FileSystemType for |path|. |
// Returns false if |path| doesn't exist. |
-BASE_API bool GetFileSystemType(const FilePath& path, FileSystemType* type); |
+bool GetFileSystemType(const FilePath& path, FileSystemType* type); |
#endif |
} // namespace file_util |