2011-10-06 02:15:45 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2011-10-21 01:38:39 +04:00
|
|
|
/* vim: set sw=2 ts=8 et ft=cpp : */
|
2012-02-10 14:04:44 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
2012-02-02 10:09:00 +04:00
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
2012-02-10 14:04:44 +04:00
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2011-10-06 02:15:45 +04:00
|
|
|
|
|
|
|
#ifndef mozilla_SandboxHal_h
|
|
|
|
#define mozilla_SandboxHal_h
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace hal_sandbox {
|
|
|
|
|
|
|
|
class PHalChild;
|
|
|
|
class PHalParent;
|
|
|
|
|
|
|
|
PHalChild* CreateHalChild();
|
|
|
|
|
|
|
|
PHalParent* CreateHalParent();
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // mozilla_SandboxHal_h
|