https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 723010b136d5b145c15e1ef215bbfdcfce20965a authored by ffxbld on 08 January 2013, 21:18:26 UTC
Added FENNEC_19_0b1_RELEASE FENNEC_19_0b1_BUILD2 tag(s) for changeset 50cbe5a371e2. DONTBUILD CLOSED TREE a=release
Tip revision: 723010b
AppProcessPermissions.h
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
 * vim: sw=2 ts=8 et :
 */
/* 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/. */

#ifndef mozilla_AppProcessPermissions_h
#define mozilla_AppProcessPermissions_h

namespace mozilla {

namespace dom {
class PBrowserParent;
class PContentParent;
}

namespace hal_sandbox {
class PHalParent;
}

/**
 * Return true iff the specified browser has the specified capability.
 * If this returns false, the browser didn't have the permission and
 * will be killed.
 */
bool
AssertAppProcessPermission(mozilla::dom::PBrowserParent* aActor,
                           const char* aPermission);

/**
 * Return true iff any of the PBrowsers loaded in this content process
 * has the specified capability.  If this returns false, the process
 * didn't have the permission and will be killed.
 */
bool
AssertAppProcessPermission(mozilla::dom::PContentParent* aActor,
                           const char* aPermission);

bool
AssertAppProcessPermission(mozilla::hal_sandbox::PHalParent* aActor,
                           const char* aPermission);

// NB: when adding capability checks for other IPDL actors, please add
// them to this file and have them delegate to the two functions above
// as appropriate.  For example,
//
//   bool AppProcessHasCapability(PNeckoParent* aActor) {
//     return AssertAppProcessPermission(aActor->Manager());
//   }

} // namespace mozilla

#endif // mozilla_AppProcessPermissions_h
back to top