2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +04: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/. */
|
2006-03-30 12:03:04 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Content policy implementation that prevents all loads of images,
|
|
|
|
* subframes, etc from documents loaded as data (eg documents loaded
|
|
|
|
* via XMLHttpRequest).
|
|
|
|
*/
|
|
|
|
|
2005-04-11 04:29:36 +04:00
|
|
|
#ifndef nsDataDocumentContentPolicy_h__
|
|
|
|
#define nsDataDocumentContentPolicy_h__
|
|
|
|
|
|
|
|
/* 1147d32c-215b-4014-b180-07fe7aedf915 */
|
|
|
|
#define NS_DATADOCUMENTCONTENTPOLICY_CID \
|
|
|
|
{ \
|
|
|
|
0x1147d32c, 0x215b, 0x4014, { \
|
|
|
|
0xb1, 0x80, 0x07, 0xfe, 0x7a, 0xed, 0xf9, 0x15 \
|
|
|
|
} \
|
2018-11-30 13:46:48 +03:00
|
|
|
}
|
2005-04-11 04:29:36 +04:00
|
|
|
#define NS_DATADOCUMENTCONTENTPOLICY_CONTRACTID \
|
|
|
|
"@mozilla.org/data-document-content-policy;1"
|
|
|
|
|
|
|
|
#include "nsIContentPolicy.h"
|
2012-06-19 06:30:09 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2005-04-11 04:29:36 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class nsDataDocumentContentPolicy final : public nsIContentPolicy {
|
2020-02-21 13:41:47 +03:00
|
|
|
~nsDataDocumentContentPolicy() = default;
|
2014-06-25 06:09:15 +04:00
|
|
|
|
2005-04-11 04:29:36 +04:00
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSICONTENTPOLICY
|
|
|
|
|
2020-02-21 13:41:47 +03:00
|
|
|
nsDataDocumentContentPolicy() = default;
|
2005-04-11 04:29:36 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsDataDocumentContentPolicy_h__ */
|