Chromium Code Reviews| Index: sandbox/mac/os_compatibility.h |
| diff --git a/sandbox/mac/os_compatibility.h b/sandbox/mac/os_compatibility.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..1f56e2e7ab20258f64cc6ccc5b4e02c733014560 |
| --- /dev/null |
| +++ b/sandbox/mac/os_compatibility.h |
| @@ -0,0 +1,40 @@ |
| +// Copyright 2014 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +// This file is used to handle differences in Mach message IDs and structures |
| +// that occur between different OS versions. The Mach messages that the sandbox |
| +// is interested in are decoded using information derived from the open-source |
| +// libraries, i.e. <http://www.opensource.apple.com/source/launchd/>. While |
| +// these messages definitions are open source, they are not considered part of |
| +// the stable OS API, and so differences do exist between OS versions. |
| + |
| +#ifndef SANDBOX_MAC_OS_COMPATIBILITY_H_ |
| +#define SANDBOX_MAC_OS_COMPATIBILITY_H_ |
| + |
| +#include <mach/mach.h> |
| + |
| +namespace sandbox { |
| + |
| +typedef const char* (*LookUp2GetRequestName)(const mach_msg_header_t*); |
| +typedef void (*LookUp2FillReply)(mach_msg_header_t*, mach_port_t service_port); |
| + |
| +struct LaunchdCompatibilityShim { |
| + // The msgh_id for look_up2. |
| + mach_msg_id_t msg_id_look_up2; |
| + // The msgh_id for swap_integer. |
|
Mark Mentovai
2014/05/06 20:51:50
Can you put some vertical whitespace in here so it
Robert Sesek
2014/05/08 20:58:12
Done.
|
| + mach_msg_id_t msg_id_swap_integer; |
| + // A function to take a look_up2 message and return the string service name |
| + // that was requested via the message. |
| + LookUp2GetRequestName look_up2_get_request_name; |
| + // A function to formulate a reply to a look_up2 message, given the reply |
| + // message and the port to return as the service. |
| + LookUp2FillReply look_up2_fill_reply; |
| +}; |
| + |
| +// Gets the compatibility shim for the launchd job subsystem. |
| +const LaunchdCompatibilityShim GetLaunchdCompatibilityShim(); |
| + |
| +} // namespace sandbox |
| + |
| +#endif // SANDBOX_MAC_OS_COMPATIBILITY_H_ |