Backed out changeset 2450366cf7ca (bug 1891629) for causing win msix mochitest failures
[gecko.git] / widget / cocoa / nsMacFinderProgress.h
bloba0e48a0d590609ad96fe93354bd08a74802f57e0
1 /* -*- Mode: c++; tab-width: 2; indent-tabs-mode: nil; -*- */
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 _MACFINDERPROGRESS_H_
6 #define _MACFINDERPROGRESS_H_
8 #include "nsIMacFinderProgress.h"
9 #include "nsCOMPtr.h"
11 class nsMacFinderProgress : public nsIMacFinderProgress {
12 public:
13 nsMacFinderProgress();
15 NS_DECL_ISUPPORTS
16 NS_DECL_NSIMACFINDERPROGRESS
18 protected:
19 virtual ~nsMacFinderProgress();
21 NSProgress* mProgress;
24 #endif