mirror of
				https://github.com/mozilla/gecko-dev.git
				synced 2025-11-04 10:18:41 +02:00 
			
		
		
		
	This is required because the script security manager which currently owns the singleton is main-thread only. This change still ties the lifecycle of the static to that service, but also makes it generally available from any thread. Differential Revision: https://phabricator.services.mozilla.com/D163035
		
			
				
	
	
		
			51 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
 | 
						|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
 | 
						|
/* 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/. */
 | 
						|
 | 
						|
#include "mozilla/dom/PermissionMessageUtils.h"
 | 
						|
#include "mozilla/ipc/BackgroundUtils.h"
 | 
						|
#include "mozilla/ipc/PBackgroundSharedTypes.h"
 | 
						|
#include "nsCOMPtr.h"
 | 
						|
#include "nsIPrincipal.h"
 | 
						|
 | 
						|
namespace mozilla::ipc {
 | 
						|
 | 
						|
void IPDLParamTraits<nsIPrincipal*>::Write(IPC::MessageWriter* aWriter,
 | 
						|
                                           IProtocol* aActor,
 | 
						|
                                           nsIPrincipal* aParam) {
 | 
						|
  Maybe<PrincipalInfo> info;
 | 
						|
  if (aParam) {
 | 
						|
    info.emplace();
 | 
						|
    nsresult rv = PrincipalToPrincipalInfo(aParam, info.ptr());
 | 
						|
    MOZ_RELEASE_ASSERT(NS_SUCCEEDED(rv));
 | 
						|
  }
 | 
						|
 | 
						|
  WriteIPDLParam(aWriter, aActor, info);
 | 
						|
}
 | 
						|
 | 
						|
bool IPDLParamTraits<nsIPrincipal*>::Read(IPC::MessageReader* aReader,
 | 
						|
                                          IProtocol* aActor,
 | 
						|
                                          RefPtr<nsIPrincipal>* aResult) {
 | 
						|
  Maybe<PrincipalInfo> info;
 | 
						|
  if (!ReadIPDLParam(aReader, aActor, &info)) {
 | 
						|
    return false;
 | 
						|
  }
 | 
						|
 | 
						|
  if (info.isNothing()) {
 | 
						|
    return true;
 | 
						|
  }
 | 
						|
 | 
						|
  auto principalOrErr = PrincipalInfoToPrincipal(info.ref());
 | 
						|
 | 
						|
  if (NS_WARN_IF(principalOrErr.isErr())) {
 | 
						|
    return false;
 | 
						|
  }
 | 
						|
 | 
						|
  nsCOMPtr<nsIPrincipal> principal = principalOrErr.unwrap();
 | 
						|
  *aResult = principal;
 | 
						|
  return true;
 | 
						|
}
 | 
						|
 | 
						|
}  // namespace mozilla::ipc
 |