diff options
author | thomasvl@chromium.org <thomasvl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-15 21:22:55 +0000 |
---|---|---|
committer | thomasvl@chromium.org <thomasvl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-15 21:22:55 +0000 |
commit | 6770f2a2910288b6eaf8147786b5317282463aa5 (patch) | |
tree | b247fe1d6ee638d9beaa386471976660b7cb99f9 /base | |
parent | 1a0233feda52a2c6f761e10fee6ea6bef5382f89 (diff) | |
download | chromium_src-6770f2a2910288b6eaf8147786b5317282463aa5.zip chromium_src-6770f2a2910288b6eaf8147786b5317282463aa5.tar.gz chromium_src-6770f2a2910288b6eaf8147786b5317282463aa5.tar.bz2 |
No need to include all of carbon, just need CoreFoundation, and impl gets that from the header including it.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/5022002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@66172 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r-- | base/native_library.h | 2 | ||||
-rw-r--r-- | base/native_library_mac.mm | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/base/native_library.h b/base/native_library.h index a83f68a..3d8c280 100644 --- a/base/native_library.h +++ b/base/native_library.h @@ -14,7 +14,7 @@ #if defined(OS_WIN) #include <windows.h> #elif defined(OS_MACOSX) -#import <Carbon/Carbon.h> +#import <CoreFoundation/CoreFoundation.h> #endif // OS_* #include "base/string16.h" diff --git a/base/native_library_mac.mm b/base/native_library_mac.mm index b17aaa6..0669bee 100644 --- a/base/native_library_mac.mm +++ b/base/native_library_mac.mm @@ -5,7 +5,6 @@ #include "base/native_library.h" #include <dlfcn.h> -#import <Carbon/Carbon.h> #include "base/file_path.h" #include "base/file_util.h" |