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