Use mach_override to intercept all newly registered malloc zones.
mach_override is required for two reasons:
1) There is no signal emitted when a new malloc zone is registered.
Intercepting all malloc zones without mach_override requires polling, and the
interception will not happen immediately at registration.
2) Polling requires Chrome to call malloc_get_all_zones, which is not thread
safe and has undefined behavior if a zone is registered or deregistered during
container traversal.
BUG=
693237