diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-08 22:55:15 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-08 22:55:15 +0000 |
commit | ed14b69482323b94341233951e1ac7edee5fa424 (patch) | |
tree | 2c9b647f3078d0fc3f903bce4b5720352e288923 /base/mac | |
parent | 9c6a920faf5f87abfc5973a529e1f1d2206886ec (diff) | |
download | chromium_src-ed14b69482323b94341233951e1ac7edee5fa424.zip chromium_src-ed14b69482323b94341233951e1ac7edee5fa424.tar.gz chromium_src-ed14b69482323b94341233951e1ac7edee5fa424.tar.bz2 |
base: Add more BASE_EXPORT macros
BUG=90078
TEST=none
Review URL: http://codereview.chromium.org/9652005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@125704 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/mac')
-rw-r--r-- | base/mac/foundation_util.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/base/mac/foundation_util.h b/base/mac/foundation_util.h index 56798c9..d2e31de 100644 --- a/base/mac/foundation_util.h +++ b/base/mac/foundation_util.h @@ -44,7 +44,7 @@ BASE_EXPORT void SetOverrideAmIBundled(bool value); BASE_EXPORT bool IsBackgroundOnlyProcess(); // Returns the path to a resource within the framework bundle. -FilePath PathForFrameworkBundleResource(CFStringRef resourceName); +BASE_EXPORT FilePath PathForFrameworkBundleResource(CFStringRef resourceName); // Returns the creator code associated with the CFBundleRef at bundle. OSType CreatorCodeForCFBundleRef(CFBundleRef bundle); @@ -311,10 +311,10 @@ T GetValueFromDictionary(CFDictionaryRef dict, CFStringRef key) { } // Converts |path| to an autoreleased NSString. Returns nil if |path| is empty. -NSString* FilePathToNSString(const FilePath& path); +BASE_EXPORT NSString* FilePathToNSString(const FilePath& path); // Converts |str| to a FilePath. Returns an empty path if |str| is nil. -FilePath NSStringToFilePath(NSString* str); +BASE_EXPORT FilePath NSStringToFilePath(NSString* str); } // namespace mac } // namespace base |