2012-05-21 11:12:37 +00: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/. */
|
2003-04-17 13:16:05 +00:00
|
|
|
|
|
|
|
#ifndef nsDocShellTransferableHooks_h__
|
|
|
|
#define nsDocShellTransferableHooks_h__
|
|
|
|
|
|
|
|
#include "nsIClipboardDragDropHookList.h"
|
|
|
|
#include "nsCOMArray.h"
|
|
|
|
|
2013-09-03 20:17:26 +00:00
|
|
|
class nsIClipboardDragDropHooks;
|
2003-04-17 13:16:05 +00:00
|
|
|
|
|
|
|
class nsTransferableHookData : public nsIClipboardDragDropHookList
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsTransferableHookData();
|
|
|
|
virtual ~nsTransferableHookData();
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSICLIPBOARDDRAGDROPHOOKLIST
|
|
|
|
|
|
|
|
protected:
|
|
|
|
nsCOMArray<nsIClipboardDragDropHooks> mHookList;
|
|
|
|
};
|
|
|
|
|
2003-04-18 18:55:10 +00:00
|
|
|
#endif // nsDocShellTransferableHooks_h__
|