| Index: base/file_path.cc
|
| ===================================================================
|
| --- base/file_path.cc (revision 7450)
|
| +++ base/file_path.cc (working copy)
|
| @@ -63,15 +63,6 @@
|
|
|
| } // namespace
|
|
|
| -const std::string FilePath::UTF8Value() const {
|
| -#if defined(OS_POSIX)
|
| - // TODO(erikkay): I'm not sure how to make this code always correct for Linux.
|
| - return path_;
|
| -#elif defined(OS_WIN)
|
| - return WideToUTF8(path_);
|
| -#endif
|
| -}
|
| -
|
| bool FilePath::IsSeparator(CharType character) {
|
| for (size_t i = 0; i < arraysize(kSeparators) - 1; ++i) {
|
| if (character == kSeparators[i]) {
|
|
|