mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
e9492bcd36
--HG-- rename : caps/tests/mochitest/test_principal_extendedorigin_appid_appstatus.html => caps/tests/mochitest/test_principal_jarprefix_origin_appid_appstatus.html rename : dom/quota/UsageRunnable.h => dom/quota/UsageInfo.h
63 lines
1.4 KiB
C++
63 lines
1.4 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
|
/* 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 mozilla_dom_quota_origincollection_h__
|
|
#define mozilla_dom_quota_origincollection_h__
|
|
|
|
#include "mozilla/dom/quota/QuotaCommon.h"
|
|
|
|
#include "nsHashKeys.h"
|
|
#include "nsTHashtable.h"
|
|
|
|
#include "Utilities.h"
|
|
|
|
BEGIN_QUOTA_NAMESPACE
|
|
|
|
class OriginCollection
|
|
{
|
|
public:
|
|
bool
|
|
ContainsPattern(const nsACString& aPattern)
|
|
{
|
|
return mPatterns.Contains(aPattern);
|
|
}
|
|
|
|
void
|
|
AddPattern(const nsACString& aPattern)
|
|
{
|
|
MOZ_ASSERT(!mOrigins.Count());
|
|
MOZ_ASSERT(!ContainsPattern(aPattern));
|
|
mPatterns.AppendElement(aPattern);
|
|
}
|
|
|
|
bool
|
|
ContainsOrigin(const nsACString& aOrigin)
|
|
{
|
|
for (uint32_t index = 0; index < mPatterns.Length(); index++) {
|
|
if (PatternMatchesOrigin(mPatterns[index], aOrigin)) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return mOrigins.GetEntry(aOrigin);
|
|
}
|
|
|
|
void
|
|
AddOrigin(const nsACString& aOrigin)
|
|
{
|
|
MOZ_ASSERT(!ContainsOrigin(aOrigin));
|
|
mOrigins.PutEntry(aOrigin);
|
|
}
|
|
|
|
private:
|
|
nsTArray<nsCString> mPatterns;
|
|
nsTHashtable<nsCStringHashKey> mOrigins;
|
|
};
|
|
|
|
END_QUOTA_NAMESPACE
|
|
|
|
#endif // mozilla_dom_quota_origincollection_h__
|