2012-05-21 04:12:37 -07: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifndef nsChannelProperties_h__
|
|
|
|
#define nsChannelProperties_h__
|
|
|
|
|
|
|
|
#include "nsStringGlue.h"
|
2013-07-12 05:56:54 -07:00
|
|
|
#ifdef IMPL_LIBXUL
|
2007-03-22 10:30:00 -07:00
|
|
|
#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 13:08:21 -07: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"
|
|
|
|
|
2013-07-12 05:56:54 -07:00
|
|
|
#ifdef IMPL_LIBXUL
|
2010-04-10 13:08:21 -07:00
|
|
|
#define NS_CHANNEL_PROP_CHANNEL_POLICY gNetStrings->kChannelPolicy
|
2007-03-22 10:30:00 -07:00
|
|
|
#else
|
2010-04-10 13:08:21 -07:00
|
|
|
#define NS_CHANNEL_PROP_CHANNEL_POLICY \
|
|
|
|
NS_LITERAL_STRING(NS_CHANNEL_PROP_CHANNEL_POLICY_STR)
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|