2008-09-30 20:04:10 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
// vim:cindent:ts=2:et:sw=2:
|
2012-05-21 04:12:37 -07:00
|
|
|
/* 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/. */
|
2008-09-30 20:04:10 -07:00
|
|
|
|
|
|
|
/* code for loading in @font-face defined font data */
|
|
|
|
|
|
|
|
#ifndef nsFontFaceLoader_h_
|
|
|
|
#define nsFontFaceLoader_h_
|
|
|
|
|
2014-02-24 06:41:56 -08:00
|
|
|
#include "mozilla/Attributes.h"
|
2008-12-11 23:31:51 -08:00
|
|
|
#include "nsCOMPtr.h"
|
2008-10-29 11:09:50 -07:00
|
|
|
#include "nsIStreamLoader.h"
|
2009-01-19 01:21:29 -08:00
|
|
|
#include "nsIChannel.h"
|
2008-09-30 20:04:10 -07:00
|
|
|
#include "gfxUserFontSet.h"
|
2009-01-19 01:21:29 -08:00
|
|
|
#include "nsHashKeys.h"
|
|
|
|
#include "nsTHashtable.h"
|
2011-04-12 03:53:20 -07:00
|
|
|
#include "nsCSSRules.h"
|
2008-09-30 20:04:10 -07:00
|
|
|
|
2008-11-05 16:32:12 -08:00
|
|
|
class nsIPrincipal;
|
2008-09-30 20:04:10 -07:00
|
|
|
|
2008-10-29 11:09:50 -07:00
|
|
|
class nsFontFaceLoader : public nsIStreamLoaderObserver
|
2008-09-30 20:04:10 -07:00
|
|
|
{
|
|
|
|
public:
|
2014-09-08 00:23:20 -07:00
|
|
|
nsFontFaceLoader(gfxUserFontEntry* aFontToLoad, nsIURI* aFontURI,
|
2014-10-01 19:32:05 -07:00
|
|
|
mozilla::dom::FontFaceSet* aFontFaceSet,
|
|
|
|
nsIChannel* aChannel);
|
2012-12-19 01:42:25 -08:00
|
|
|
|
2008-09-30 20:04:10 -07:00
|
|
|
NS_DECL_ISUPPORTS
|
2008-10-29 11:09:50 -07:00
|
|
|
NS_DECL_NSISTREAMLOADEROBSERVER
|
2008-09-30 20:04:10 -07:00
|
|
|
|
|
|
|
// initiate the load
|
2009-01-19 01:21:29 -08:00
|
|
|
nsresult Init();
|
2014-10-01 19:32:05 -07:00
|
|
|
// cancel the load and remove its reference to mFontFaceSet
|
2009-01-19 01:21:29 -08:00
|
|
|
void Cancel();
|
2008-09-30 20:04:10 -07:00
|
|
|
|
2012-07-30 07:20:58 -07:00
|
|
|
void DropChannel() { mChannel = nullptr; }
|
2009-01-31 00:58:42 -08:00
|
|
|
|
2013-09-25 06:48:20 -07:00
|
|
|
void StartedLoading(nsIStreamLoader* aStreamLoader);
|
2011-01-05 13:48:48 -08:00
|
|
|
|
2013-09-25 06:48:20 -07:00
|
|
|
static void LoadTimerCallback(nsITimer* aTimer, void* aClosure);
|
2011-01-05 13:48:48 -08:00
|
|
|
|
2008-11-05 16:32:12 -08:00
|
|
|
static nsresult CheckLoadAllowed(nsIPrincipal* aSourcePrincipal,
|
|
|
|
nsIURI* aTargetURI,
|
|
|
|
nsISupports* aContext);
|
2015-03-06 00:44:23 -08:00
|
|
|
gfxUserFontEntry* GetUserFontEntry() const { return mUserFontEntry; }
|
2009-01-31 00:58:42 -08:00
|
|
|
|
2014-06-23 15:40:01 -07:00
|
|
|
protected:
|
|
|
|
virtual ~nsFontFaceLoader();
|
|
|
|
|
2008-12-11 23:31:51 -08:00
|
|
|
private:
|
2014-09-08 00:23:20 -07:00
|
|
|
nsRefPtr<gfxUserFontEntry> mUserFontEntry;
|
2008-12-11 23:31:51 -08:00
|
|
|
nsCOMPtr<nsIURI> mFontURI;
|
2014-10-01 19:32:05 -07:00
|
|
|
nsRefPtr<mozilla::dom::FontFaceSet> mFontFaceSet;
|
2009-01-19 01:21:29 -08:00
|
|
|
nsCOMPtr<nsIChannel> mChannel;
|
2011-01-05 13:48:48 -08:00
|
|
|
nsCOMPtr<nsITimer> mLoadTimer;
|
|
|
|
|
2013-09-25 06:48:20 -07:00
|
|
|
nsIStreamLoader* mStreamLoader;
|
2008-09-30 20:04:10 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* !defined(nsFontFaceLoader_h_) */
|