Bug 1454293 [wpt PR 10484] - null is not the correct origin for createDocument()...
[gecko.git] / widget / nsBaseClipboard.h
blob1f3f0012588088b8f642f18bdf6da9e7a63c7fe3
1 /* -*- Mode: C++; tab-width: 2; 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/. */
6 #ifndef nsBaseClipboard_h__
7 #define nsBaseClipboard_h__
9 #include "nsIClipboard.h"
10 #include "nsITransferable.h"
11 #include "nsCOMPtr.h"
13 class nsITransferable;
14 class nsIClipboardOwner;
15 class nsIWidget;
17 /**
18 * Native Win32 BaseClipboard wrapper
21 class nsBaseClipboard : public nsIClipboard
24 public:
25 nsBaseClipboard();
27 //nsISupports
28 NS_DECL_ISUPPORTS
30 // nsIClipboard
31 NS_DECL_NSICLIPBOARD
33 protected:
34 virtual ~nsBaseClipboard();
36 NS_IMETHOD SetNativeClipboardData ( int32_t aWhichClipboard ) = 0;
37 NS_IMETHOD GetNativeClipboardData ( nsITransferable * aTransferable, int32_t aWhichClipboard ) = 0;
39 bool mEmptyingForSetData;
40 bool mIgnoreEmptyNotification;
41 nsCOMPtr<nsIClipboardOwner> mClipboardOwner;
42 nsCOMPtr<nsITransferable> mTransferable;
45 #endif // nsBaseClipboard_h__