2013-03-28 17:16:35 -04:00
|
|
|
#ifndef BRIGHTRAY_COMMON_MAC_FOUNDATION_UTIL_H_
|
|
|
|
#define BRIGHTRAY_COMMON_MAC_FOUNDATION_UTIL_H_
|
|
|
|
|
|
|
|
// This header exists to work around incompatibilities between
|
|
|
|
// base/mac/foundation_util.h and the 10.8 SDK.
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
2013-11-17 19:14:24 -05:00
|
|
|
// base/mac/foundation_util.h contains an incompatible declaration of
|
|
|
|
// NSSearchPathDirectory, so here we #define it to be something else.
|
2013-03-28 17:16:35 -04:00
|
|
|
#define NSSearchPathDirectory NSSearchPathDirectory___PRE_10_8
|
|
|
|
#import "base/mac/foundation_util.h"
|
|
|
|
#undef NSSearchPathDirectory
|
|
|
|
|
|
|
|
#endif
|