From 2aa4a82499d4becd2284cdb482213d541b8804dd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 28 Apr 2024 16:29:10 +0200 Subject: Adding upstream version 86.0.1. Signed-off-by: Daniel Baumann --- netwerk/url-classifier/UrlClassifierFeatureFlash.h | 51 ++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 netwerk/url-classifier/UrlClassifierFeatureFlash.h (limited to 'netwerk/url-classifier/UrlClassifierFeatureFlash.h') diff --git a/netwerk/url-classifier/UrlClassifierFeatureFlash.h b/netwerk/url-classifier/UrlClassifierFeatureFlash.h new file mode 100644 index 0000000000..ac91f9c59b --- /dev/null +++ b/netwerk/url-classifier/UrlClassifierFeatureFlash.h @@ -0,0 +1,51 @@ +/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* vim: set ts=8 sts=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_UrlClassifierFeatureFlash_h +#define mozilla_UrlClassifierFeatureFlash_h + +#include "UrlClassifierFeatureBase.h" + +namespace mozilla { +namespace net { + +class UrlClassifierFeatureFlash final : public UrlClassifierFeatureBase { + public: + struct FlashFeature; + + static void GetFeatureNames(nsTArray& aNames); + + static void MaybeShutdown(); + + static void MaybeCreate( + nsIChannel* aChannel, + nsTArray>& aFeatures); + + static already_AddRefed GetIfNameMatches( + const nsACString& aName); + + NS_IMETHOD + ProcessChannel(nsIChannel* aChannel, const nsTArray& aList, + const nsTArray& aHashes, + bool* aShouldContinue) override; + + NS_IMETHOD GetURIByListType(nsIChannel* aChannel, + nsIUrlClassifierFeature::listType aListType, + nsIUrlClassifierFeature::URIType* aURIType, + nsIURI** aURI) override; + + private: + explicit UrlClassifierFeatureFlash(const FlashFeature& aFlashFeature); + + static void MaybeInitialize(); + + nsIHttpChannel::FlashPluginState mFlashPluginState; +}; + +} // namespace net +} // namespace mozilla + +#endif // mozilla_UrlClassifierFeatureFlash_h -- cgit v1.2.3