2016-05-27 14:54:31 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 12:12:37 +01:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2010-04-16 00:29:16 -05:00
|
|
|
|
|
|
|
#ifndef mozilla_ipc_SharedMemoryBasic_h
|
|
|
|
#define mozilla_ipc_SharedMemoryBasic_h
|
|
|
|
|
2010-09-10 16:45:59 -05:00
|
|
|
#ifdef ANDROID
|
|
|
|
# include "mozilla/ipc/SharedMemoryBasic_android.h"
|
2015-09-22 13:59:00 -04:00
|
|
|
#elif defined(XP_DARWIN)
|
2015-06-17 00:38:38 -04:00
|
|
|
# include "mozilla/ipc/SharedMemoryBasic_mach.h"
|
2010-09-10 16:45:59 -05:00
|
|
|
#else
|
|
|
|
# include "mozilla/ipc/SharedMemoryBasic_chromium.h"
|
|
|
|
#endif
|
2010-04-16 00:29:16 -05:00
|
|
|
|
|
|
|
#endif // ifndef mozilla_ipc_SharedMemoryBasic_h
|