1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/embedding/browser/webBrowser/nsWebBrowserContentPolicy.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,24 @@ 1.4 +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- 1.5 + * 1.6 + * This Source Code Form is subject to the terms of the Mozilla Public 1.7 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.9 + 1.10 +#include "nsIContentPolicy.h" 1.11 + 1.12 +/* f66bc334-1dd1-11b2-bab2-90e04fe15c19 */ 1.13 +#define NS_WEBBROWSERCONTENTPOLICY_CID \ 1.14 +{ 0xf66bc334, 0x1dd1, 0x11b2, { 0xba, 0xb2, 0x90, 0xe0, 0x4f, 0xe1, 0x5c, 0x19 } } 1.15 + 1.16 +#define NS_WEBBROWSERCONTENTPOLICY_CONTRACTID "@mozilla.org/embedding/browser/content-policy;1" 1.17 + 1.18 +class nsWebBrowserContentPolicy : public nsIContentPolicy 1.19 +{ 1.20 +public: 1.21 + nsWebBrowserContentPolicy(); 1.22 + virtual ~nsWebBrowserContentPolicy(); 1.23 + 1.24 + NS_DECL_ISUPPORTS 1.25 + NS_DECL_NSICONTENTPOLICY 1.26 +}; 1.27 +