| Index: base/mac/foundation_util.h
|
| diff --git a/base/mac/foundation_util.h b/base/mac/foundation_util.h
|
| index f45c1deff5e3c87f48ddf49f8ccd51925027a027..56798c96f5a7e69bc94fc22ede88853246ffc772 100644
|
| --- a/base/mac/foundation_util.h
|
| +++ b/base/mac/foundation_util.h
|
| @@ -310,6 +310,12 @@ T GetValueFromDictionary(CFDictionaryRef dict, CFStringRef key) {
|
| return value_specific;
|
| }
|
|
|
| +// Converts |path| to an autoreleased NSString. Returns nil if |path| is empty.
|
| +NSString* FilePathToNSString(const FilePath& path);
|
| +
|
| +// Converts |str| to a FilePath. Returns an empty path if |str| is nil.
|
| +FilePath NSStringToFilePath(NSString* str);
|
| +
|
| } // namespace mac
|
| } // namespace base
|
|
|
|
|