| Index: base/mac/mac_util.mm
|
| diff --git a/base/mac/mac_util.mm b/base/mac/mac_util.mm
|
| index 2f54b2799b5b01932b94fce98a63e5145ebae94b..930a280ee3cb08fb491bfa64e45371bd3abcca1a 100644
|
| --- a/base/mac/mac_util.mm
|
| +++ b/base/mac/mac_util.mm
|
| @@ -122,19 +122,6 @@ bool IsHiddenLoginItem(LSSharedFileListItemRef item) {
|
|
|
| } // namespace
|
|
|
| -std::string PathFromFSRef(const FSRef& ref) {
|
| - ScopedCFTypeRef<CFURLRef> url(
|
| - CFURLCreateFromFSRef(kCFAllocatorDefault, &ref));
|
| - NSString *path_string = [(NSURL *)url.get() path];
|
| - return [path_string fileSystemRepresentation];
|
| -}
|
| -
|
| -bool FSRefFromPath(const std::string& path, FSRef* ref) {
|
| - OSStatus status = FSPathMakeRef((const UInt8*)path.c_str(),
|
| - ref, nil);
|
| - return status == noErr;
|
| -}
|
| -
|
| CGColorSpaceRef GetGenericRGBColorSpace() {
|
| // Leaked. That's OK, it's scoped to the lifetime of the application.
|
| static CGColorSpaceRef g_color_space_generic_rgb(
|
|
|