Backed out changeset 2450366cf7ca (bug 1891629) for causing win msix mochitest failures
[gecko.git] / widget / windows / nsSharePicker.h
blobd9ba9d2a6d946244a63af8bcf1a747951edf8000
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef nsSharePicker_h__
8 #define nsSharePicker_h__
10 #include "nsCOMPtr.h"
11 #include "nsISharePicker.h"
12 #include "nsPIDOMWindow.h"
13 #include "nsThreadUtils.h"
15 class nsSharePicker : public nsISharePicker {
16 virtual ~nsSharePicker() = default;
18 public:
19 nsSharePicker() = default;
21 NS_DECL_ISUPPORTS
22 NS_DECL_NSISHAREPICKER
24 private:
25 bool mInited = false;
26 mozIDOMWindowProxy* mOpenerWindow;
29 #endif // nsSharePicker_h__