gecko-dev/widget/cocoa/nsMacSharingService.h
Dale Harvey 5aeada7d94 Bug 1363168 - Add support for OSX Share feature. r=Gijs,mstange
MozReview-Commit-ID: sJXl2If9Ou

--HG--
extra : rebase_source : b88ff89e1d28bab28c3575c2f7f30c91bd584aea
2018-03-12 09:16:51 +00:00

24 lines
596 B
C++

/* -*- Mode: c++; tab-width: 2; indent-tabs-mode: nil; -*- */
/* 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/. */
#ifndef nsMacSharingService_h_
#define nsMacSharingService_h_
#include "nsIMacSharingService.h"
class nsMacSharingService : public nsIMacSharingService
{
public:
nsMacSharingService() {}
NS_DECL_ISUPPORTS
NS_DECL_NSIMACSHARINGSERVICE
protected:
virtual ~nsMacSharingService() {}
};
#endif // nsMacSharingService_h_