2016-05-28 00:54:31 +03: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 15:12:37 +04: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 09:29:16 +04:00
|
|
|
|
|
|
|
#ifndef mozilla_ipc_SharedMemoryBasic_h
|
|
|
|
#define mozilla_ipc_SharedMemoryBasic_h
|
|
|
|
|
2010-09-11 01:45:59 +04:00
|
|
|
#ifdef ANDROID
|
|
|
|
# include "mozilla/ipc/SharedMemoryBasic_android.h"
|
2015-09-22 20:59:00 +03:00
|
|
|
#elif defined(XP_DARWIN)
|
2015-06-17 07:38:38 +03:00
|
|
|
# include "mozilla/ipc/SharedMemoryBasic_mach.h"
|
2010-09-11 01:45:59 +04:00
|
|
|
#else
|
|
|
|
# include "mozilla/ipc/SharedMemoryBasic_chromium.h"
|
|
|
|
#endif
|
2010-04-16 09:29:16 +04:00
|
|
|
|
|
|
|
#endif // ifndef mozilla_ipc_SharedMemoryBasic_h
|