1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/caps/include/DomainPolicy.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,46 @@ 1.4 +/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ 1.5 +/* vim: set ts=8 sts=4 et sw=4 tw=80: */ 1.6 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.7 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.9 + 1.10 +#ifndef DomainPolicy_h__ 1.11 +#define DomainPolicy_h__ 1.12 + 1.13 +#include "nsIDomainPolicy.h" 1.14 +#include "nsTHashtable.h" 1.15 +#include "nsURIHashKey.h" 1.16 + 1.17 +namespace mozilla { 1.18 + 1.19 +class DomainPolicy : public nsIDomainPolicy 1.20 +{ 1.21 +public: 1.22 + NS_DECL_ISUPPORTS 1.23 + NS_DECL_NSIDOMAINPOLICY 1.24 + DomainPolicy(); 1.25 + virtual ~DomainPolicy(); 1.26 + 1.27 +private: 1.28 + nsCOMPtr<nsIDomainSet> mBlacklist; 1.29 + nsCOMPtr<nsIDomainSet> mSuperBlacklist; 1.30 + nsCOMPtr<nsIDomainSet> mWhitelist; 1.31 + nsCOMPtr<nsIDomainSet> mSuperWhitelist; 1.32 +}; 1.33 + 1.34 +class DomainSet : public nsIDomainSet 1.35 +{ 1.36 +public: 1.37 + NS_DECL_ISUPPORTS 1.38 + NS_DECL_NSIDOMAINSET 1.39 + 1.40 + DomainSet() {} 1.41 + virtual ~DomainSet() {} 1.42 + 1.43 +protected: 1.44 + nsTHashtable<nsURIHashKey> mHashTable; 1.45 +}; 1.46 + 1.47 +} /* namespace mozilla */ 1.48 + 1.49 +#endif /* DomainPolicy_h__ */