nsWebBrowserContentPolicy.h 823 B

1234567891011121314151617181920212223242526
  1. /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* This Source Code Form is subject to the terms of the Mozilla Public
  3. * License, v. 2.0. If a copy of the MPL was not distributed with this
  4. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  5. #include "nsIContentPolicy.h"
  6. /* f66bc334-1dd1-11b2-bab2-90e04fe15c19 */
  7. #define NS_WEBBROWSERCONTENTPOLICY_CID \
  8. { 0xf66bc334, 0x1dd1, 0x11b2, { 0xba, 0xb2, 0x90, 0xe0, 0x4f, 0xe1, 0x5c, 0x19 } }
  9. #define NS_WEBBROWSERCONTENTPOLICY_CONTRACTID \
  10. "@mozilla.org/embedding/browser/content-policy;1"
  11. class nsWebBrowserContentPolicy : public nsIContentPolicy
  12. {
  13. protected:
  14. virtual ~nsWebBrowserContentPolicy();
  15. public:
  16. nsWebBrowserContentPolicy();
  17. NS_DECL_ISUPPORTS
  18. NS_DECL_NSICONTENTPOLICY
  19. };