diff options
Diffstat (limited to 'base/file_path.cc')
-rw-r--r-- | base/file_path.cc | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/base/file_path.cc b/base/file_path.cc index bf3eee8..0d0b40b 100644 --- a/base/file_path.cc +++ b/base/file_path.cc @@ -2,16 +2,12 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include <algorithm> - #include "base/file_path.h" -#if defined(OS_WIN) -#include <windows.h> -#elif defined(OS_MACOSX) -#include <CoreFoundation/CoreFoundation.h> -#endif +#include <string.h> +#include <algorithm> +#include "base/basictypes.h" #include "base/logging.h" #include "base/pickle.h" @@ -27,6 +23,12 @@ #include "base/third_party/icu/icu_utf.h" #endif +#if defined(OS_WIN) +#include <windows.h> +#elif defined(OS_MACOSX) +#include <CoreFoundation/CoreFoundation.h> +#endif + #if defined(FILE_PATH_USES_WIN_SEPARATORS) const FilePath::CharType FilePath::kSeparators[] = FILE_PATH_LITERAL("\\/"); #else // FILE_PATH_USES_WIN_SEPARATORS |