1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/toolkit/components/parentalcontrols/nsParentalControlsServiceWin.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,40 @@ 1.4 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.8 + 1.9 +#ifndef nsParentalControlsServiceWin_h__ 1.10 +#define nsParentalControlsServiceWin_h__ 1.11 + 1.12 +#include "nsIParentalControlsService.h" 1.13 +#include "nsCOMPtr.h" 1.14 +#include "nsAutoPtr.h" 1.15 +#include "nsIURI.h" 1.16 + 1.17 +// wpcevents.h requires this be elevated 1.18 +#if (WINVER < 0x0600) 1.19 +# undef WINVER 1.20 +# define WINVER 0x0600 1.21 +#endif 1.22 + 1.23 +#include <wpcapi.h> 1.24 +#include <wpcevent.h> 1.25 + 1.26 +class nsParentalControlsServiceWin : public nsIParentalControlsService 1.27 +{ 1.28 +public: 1.29 + NS_DECL_ISUPPORTS 1.30 + NS_DECL_NSIPARENTALCONTROLSSERVICE 1.31 + 1.32 + nsParentalControlsServiceWin(); 1.33 + virtual ~nsParentalControlsServiceWin(); 1.34 + 1.35 +private: 1.36 + bool mEnabled; 1.37 + REGHANDLE mProvider; 1.38 + IWindowsParentalControls * mPC; 1.39 + 1.40 + void LogFileDownload(bool blocked, nsIURI *aSource, nsIFile *aTarget); 1.41 +}; 1.42 + 1.43 +#endif /* nsParentalControlsServiceWin_h__ */