summaryrefslogtreecommitdiffstats
path: root/third_party/apple_apsl/README.chromium
diff options
context:
space:
mode:
authoravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-18 21:55:38 +0000
committeravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-18 21:55:38 +0000
commit67ec3c654baf4447d3e8dd85a0edccf3e49dcca2 (patch)
tree3dd45571b5127f18b51e15cd30792cf08f05d8e0 /third_party/apple_apsl/README.chromium
parentee2a79e9ed2339cb9548c43ae471b05d6418f2a7 (diff)
downloadchromium_src-67ec3c654baf4447d3e8dd85a0edccf3e49dcca2.zip
chromium_src-67ec3c654baf4447d3e8dd85a0edccf3e49dcca2.tar.gz
chromium_src-67ec3c654baf4447d3e8dd85a0edccf3e49dcca2.tar.bz2
Move APSL code into third_party.
BUG=none TEST=unit tested Review URL: http://codereview.chromium.org/3801013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62983 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/apple_apsl/README.chromium')
-rw-r--r--third_party/apple_apsl/README.chromium32
1 files changed, 32 insertions, 0 deletions
diff --git a/third_party/apple_apsl/README.chromium b/third_party/apple_apsl/README.chromium
new file mode 100644
index 0000000..44077b9
--- /dev/null
+++ b/third_party/apple_apsl/README.chromium
@@ -0,0 +1,32 @@
+Name: Darwin
+URL: http://www.opensource.apple.com/
+
+Three files are excerpted here:
+
+malloc.h from:
+http://www.opensource.apple.com/source/Libc/Libc-583/include/malloc/malloc.h
+
+Modifications:
+- Modified #ifdef guards.
+- Removed everything but the definition of malloc_zone_t.
+- Renamed _malloc_zone_t to ChromeMallocZone to avoid possible name conflicts.
+- Added a few comments.
+
+CFRuntime.h from:
+http://www.opensource.apple.com/source/CF/CF-550/CFRuntime.h
+
+Modifications:
+- Modified #ifdef guards.
+- Removed everything but the definition of CFRuntimeBase.
+- Renamed CFRuntimeBase to ChromeCFRuntimeBase to avoid possible name conflicts.
+
+CFBase.h from:
+http://opensource.apple.com/source/CF/CF-550/CFBase.c
+
+Modifications:
+- Renamed the file to CFBase.h.
+- Added #ifdef guards.
+- Added an #include of the CFRuntime.h file.
+- Removed everything but the definition of __CFAllocator.
+- Modified the reference of CFRuntimeBase to ChromeCFRuntimeBase.
+- Renamed __CFAllocator to ChromeCFAllocator to avoid possible name conflicts.