зеркало из https://github.com/mozilla/gecko-dev.git
64 строки
1.7 KiB
C++
64 строки
1.7 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/. */
|
|
|
|
/* thread-safe container of information for resolving url values */
|
|
|
|
#ifndef mozilla_URLExtraData_h
|
|
#define mozilla_URLExtraData_h
|
|
|
|
#include "mozilla/Move.h"
|
|
#include "mozilla/StaticPtr.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
#include "nsIPrincipal.h"
|
|
#include "nsIURI.h"
|
|
|
|
namespace mozilla {
|
|
|
|
struct URLExtraData
|
|
{
|
|
URLExtraData(already_AddRefed<nsIURI> aBaseURI,
|
|
already_AddRefed<nsIURI> aReferrer,
|
|
already_AddRefed<nsIPrincipal> aPrincipal)
|
|
: mBaseURI(Move(aBaseURI))
|
|
, mReferrer(Move(aReferrer))
|
|
, mPrincipal(Move(aPrincipal))
|
|
{
|
|
MOZ_ASSERT(mBaseURI);
|
|
}
|
|
|
|
URLExtraData(nsIURI* aBaseURI, nsIURI* aReferrer, nsIPrincipal* aPrincipal)
|
|
: URLExtraData(do_AddRef(aBaseURI),
|
|
do_AddRef(aReferrer),
|
|
do_AddRef(aPrincipal)) {}
|
|
|
|
NS_INLINE_DECL_THREADSAFE_REFCOUNTING(URLExtraData)
|
|
|
|
nsIURI* BaseURI() const { return mBaseURI; }
|
|
nsIURI* GetReferrer() const { return mReferrer; }
|
|
nsIPrincipal* GetPrincipal() const { return mPrincipal; }
|
|
|
|
static URLExtraData* Dummy() {
|
|
MOZ_ASSERT(sDummy);
|
|
return sDummy;
|
|
}
|
|
static void InitDummy();
|
|
static void ReleaseDummy();
|
|
|
|
private:
|
|
~URLExtraData();
|
|
|
|
nsCOMPtr<nsIURI> mBaseURI;
|
|
nsCOMPtr<nsIURI> mReferrer;
|
|
nsCOMPtr<nsIPrincipal> mPrincipal;
|
|
|
|
static StaticRefPtr<URLExtraData> sDummy;
|
|
};
|
|
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_URLExtraData_h
|