/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* 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/. */
already_AddRefed<SystemPrincipal> SystemPrincipal::Init() {
AssertIsOnMainThread();
StaticMutexAutoLock lock(sSystemPrincipalMutex); if (MOZ_UNLIKELY(sSystemPrincipal)) {
MOZ_ASSERT_UNREACHABLE("SystemPrincipal::Init() may only be called once");
} else {
sSystemPrincipal = new SystemPrincipal();
} return do_AddRef(sSystemPrincipal);
}
NS_IMETHODIMP
SystemPrincipal::Read(nsIObjectInputStream* aStream) { // no-op: CID is sufficient to identify the mSystemPrincipal singleton return NS_OK;
}
NS_IMETHODIMP
SystemPrincipal::Write(nsIObjectOutputStream* aStream) { // Read is used still for legacy principals
MOZ_RELEASE_ASSERT(false, "Old style serialization is removed"); return NS_OK;
}
¤ Dauer der Verarbeitung: 0.18 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.