README.chromium 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. Name: Darwin
  2. URL: http://www.opensource.apple.com/
  3. Version: unknown
  4. Security Critical: yes
  5. License: Apple Public Source License 2.0
  6. Four files are excerpted here:
  7. malloc.h from:
  8. https://opensource.apple.com/source/libmalloc/libmalloc-283/include/malloc/malloc.h
  9. Modifications:
  10. - Modified #ifdef guards.
  11. - Removed everything but the definition of malloc_zone_t.
  12. - Added a header for the definition of boolean_t.
  13. - Renamed _malloc_zone_t to ChromeMallocZone to avoid possible name conflicts.
  14. CFRuntime.h from:
  15. http://www.opensource.apple.com/source/CF/CF-635/CFRuntime.h
  16. Modifications:
  17. - Modified #ifdef guards.
  18. - Removed everything but the definition of CFRuntimeBase.
  19. - Renamed CFRuntimeBase to ChromeCFRuntimeBase to avoid possible name conflicts.
  20. CFBase.h from:
  21. http://www.opensource.apple.com/source/CF/CF-550/CFBase.c
  22. http://www.opensource.apple.com/source/CF/CF-635/CFBase.c
  23. Modifications:
  24. - Renamed the file to CFBase.h.
  25. - Added #ifdef guards.
  26. - Added an #include of the CFRuntime.h file.
  27. - Removed everything but the definition of __CFAllocator.
  28. - Modified the reference of CFRuntimeBase to ChromeCFRuntimeBase.
  29. - Renamed __CFAllocator to ChromeCFAllocatorLeopards (from CF-550) and to
  30. ChromeCFAllocatorLions (from CF-635) to avoid possible name conflicts.
  31. dnsinfo.h from:
  32. http://www.opensource.apple.com/source/configd/configd-453.19/dnsinfo/dnsinfo.h
  33. Provides dns_config_t which is used by /net/dns/dns_config_service_posix.cc to
  34. obtain system DNS configuration on Mac OS X. This private header is also used by
  35. Apple's open source mDNSResponder.
  36. Modifications:
  37. - Removed Availability.h and the corresponding macros.