michael@0: /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #include "nsChannelPolicy.h" michael@0: michael@0: nsChannelPolicy::nsChannelPolicy() michael@0: : mLoadType(0) michael@0: { michael@0: } michael@0: michael@0: nsChannelPolicy::~nsChannelPolicy() michael@0: { michael@0: } michael@0: michael@0: NS_IMPL_ISUPPORTS(nsChannelPolicy, nsIChannelPolicy) michael@0: michael@0: NS_IMETHODIMP michael@0: nsChannelPolicy::GetLoadType(uint32_t *aLoadType) michael@0: { michael@0: *aLoadType = mLoadType; michael@0: return NS_OK; michael@0: } michael@0: michael@0: NS_IMETHODIMP michael@0: nsChannelPolicy::SetLoadType(uint32_t aLoadType) michael@0: { michael@0: mLoadType = aLoadType; michael@0: return NS_OK; michael@0: } michael@0: michael@0: NS_IMETHODIMP michael@0: nsChannelPolicy::GetContentSecurityPolicy(nsISupports **aCSP) michael@0: { michael@0: *aCSP = mCSP; michael@0: NS_IF_ADDREF(*aCSP); michael@0: return NS_OK; michael@0: } michael@0: michael@0: NS_IMETHODIMP michael@0: nsChannelPolicy::SetContentSecurityPolicy(nsISupports *aCSP) michael@0: { michael@0: mCSP = aCSP; michael@0: return NS_OK; michael@0: }