mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
883849ee32
This patch was automatically generated using the following script: function convert() { echo "Converting $1 to $2..." find . \ ! -wholename "*/.git*" \ ! -wholename "obj-ff-dbg*" \ -type f \ \( -iname "*.cpp" \ -o -iname "*.h" \ -o -iname "*.c" \ -o -iname "*.cc" \ -o -iname "*.idl" \ -o -iname "*.ipdl" \ -o -iname "*.ipdlh" \ -o -iname "*.mm" \) | \ xargs -n 1 sed -i -e "s/\b$1\b/$2/g" } convert MOZ_OVERRIDE override convert MOZ_FINAL final
45 lines
1.2 KiB
C++
45 lines
1.2 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/* 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/. */
|
|
|
|
/* The privileged system principal. */
|
|
|
|
#ifndef nsSystemPrincipal_h__
|
|
#define nsSystemPrincipal_h__
|
|
|
|
#include "nsIPrincipal.h"
|
|
#include "nsJSPrincipals.h"
|
|
|
|
#define NS_SYSTEMPRINCIPAL_CID \
|
|
{ 0x4a6212db, 0xaccb, 0x11d3, \
|
|
{ 0xb7, 0x65, 0x0, 0x60, 0xb0, 0xb6, 0xce, 0xcb }}
|
|
#define NS_SYSTEMPRINCIPAL_CONTRACTID "@mozilla.org/systemprincipal;1"
|
|
|
|
|
|
class nsSystemPrincipal final : public nsJSPrincipals
|
|
{
|
|
public:
|
|
// Our refcount is managed by nsJSPrincipals. Use this macro to avoid
|
|
// an extra refcount member.
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
NS_DECL_NSIPRINCIPAL
|
|
NS_DECL_NSISERIALIZABLE
|
|
|
|
nsSystemPrincipal();
|
|
|
|
virtual void GetScriptLocation(nsACString &aStr) override;
|
|
|
|
#ifdef DEBUG
|
|
virtual void dumpImpl() override;
|
|
#endif
|
|
|
|
protected:
|
|
virtual ~nsSystemPrincipal(void);
|
|
|
|
// XXX Probably unnecessary. See bug 143559.
|
|
NS_DECL_OWNINGTHREAD
|
|
};
|
|
|
|
#endif // nsSystemPrincipal_h__
|