| Index: base/file_path.cc
|
| diff --git a/base/file_path.cc b/base/file_path.cc
|
| index fe2db15777cc6235e41c2bb7551a9cdd89275ec4..7e05f494698ddeeda686bb6ba2499e7a54783df7 100644
|
| --- a/base/file_path.cc
|
| +++ b/base/file_path.cc
|
| @@ -29,6 +29,8 @@
|
| #include <CoreFoundation/CoreFoundation.h>
|
| #endif
|
|
|
| +namespace base {
|
| +
|
| #if defined(FILE_PATH_USES_WIN_SEPARATORS)
|
| const FilePath::CharType FilePath::kSeparators[] = FILE_PATH_LITERAL("\\/");
|
| #else // FILE_PATH_USES_WIN_SEPARATORS
|
| @@ -1254,3 +1256,5 @@ FilePath FilePath::NormalizePathSeparators() const {
|
| void PrintTo(const FilePath& path, std::ostream* out) {
|
| *out << path.value();
|
| }
|
| +
|
| +} // namespace base
|
|
|