nsDocShellTransferableHooks.h 779 B

12345678910111213141516171819202122232425262728
  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. #ifndef nsDocShellTransferableHooks_h__
  6. #define nsDocShellTransferableHooks_h__
  7. #include "nsIClipboardDragDropHookList.h"
  8. #include "nsCOMArray.h"
  9. class nsIClipboardDragDropHooks;
  10. class nsTransferableHookData : public nsIClipboardDragDropHookList
  11. {
  12. public:
  13. nsTransferableHookData();
  14. NS_DECL_ISUPPORTS
  15. NS_DECL_NSICLIPBOARDDRAGDROPHOOKLIST
  16. protected:
  17. virtual ~nsTransferableHookData();
  18. nsCOMArray<nsIClipboardDragDropHooks> mHookList;
  19. };
  20. #endif // nsDocShellTransferableHooks_h__