1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/extensions/cookie/nsPopupWindowManager.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,38 @@ 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 nsPopupWindowManager_h__ 1.10 +#define nsPopupWindowManager_h__ 1.11 + 1.12 +#include "nsCOMPtr.h" 1.13 + 1.14 +#include "nsIObserver.h" 1.15 +#include "nsIPermissionManager.h" 1.16 +#include "nsIPopupWindowManager.h" 1.17 +#include "nsWeakReference.h" 1.18 + 1.19 +class nsPopupWindowManager : public nsIPopupWindowManager, 1.20 + public nsIObserver, 1.21 + public nsSupportsWeakReference { 1.22 + 1.23 +public: 1.24 + NS_DECL_ISUPPORTS 1.25 + NS_DECL_NSIPOPUPWINDOWMANAGER 1.26 + NS_DECL_NSIOBSERVER 1.27 + 1.28 + nsPopupWindowManager(); 1.29 + virtual ~nsPopupWindowManager(); 1.30 + nsresult Init(); 1.31 + 1.32 +private: 1.33 + uint32_t mPolicy; 1.34 + nsCOMPtr<nsIPermissionManager> mPermissionManager; 1.35 +}; 1.36 + 1.37 +// {822bcd11-6432-48be-9e9d-36f7804b7747} 1.38 +#define NS_POPUPWINDOWMANAGER_CID \ 1.39 + {0x822bcd11, 0x6432, 0x48be, {0x9e, 0x9d, 0x36, 0xf7, 0x80, 0x4b, 0x77, 0x47}} 1.40 + 1.41 +#endif /* nsPopupWindowManager_h__ */