2012-05-21 11:12:37 +00:00
|
|
|
/* 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/. */
|
2005-04-05 17:40:32 +00:00
|
|
|
|
|
|
|
#ifndef nsChannelProperties_h__
|
|
|
|
#define nsChannelProperties_h__
|
|
|
|
|
2005-11-08 19:23:00 +00:00
|
|
|
#include "nsStringGlue.h"
|
2005-04-05 17:40:32 +00:00
|
|
|
#ifdef IMPL_NS_NET
|
|
|
|
#include "nsNetStrings.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* This file contains constants for properties channels can expose.
|
|
|
|
* They can be accessed by using QueryInterface to access the nsIPropertyBag
|
|
|
|
* or nsIPropertyBag2 interface on a channel and reading the value.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2010-04-10 20:08:21 +00:00
|
|
|
/**
|
|
|
|
* Exists to allow content policy mechanism to function properly during channel
|
|
|
|
* redirects. Contains security contextual information about the load.
|
|
|
|
* Type: nsIChannelPolicy
|
|
|
|
*/
|
|
|
|
#define NS_CHANNEL_PROP_CHANNEL_POLICY_STR "channel-policy"
|
|
|
|
|
2005-04-05 17:40:32 +00:00
|
|
|
#ifdef IMPL_NS_NET
|
2010-04-10 20:08:21 +00:00
|
|
|
#define NS_CHANNEL_PROP_CHANNEL_POLICY gNetStrings->kChannelPolicy
|
2005-04-05 17:40:32 +00:00
|
|
|
#else
|
2010-04-10 20:08:21 +00:00
|
|
|
#define NS_CHANNEL_PROP_CHANNEL_POLICY \
|
|
|
|
NS_LITERAL_STRING(NS_CHANNEL_PROP_CHANNEL_POLICY_STR)
|
2005-04-05 17:40:32 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|