2004-03-09 19:59:09 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00: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/. */
|
2004-03-09 19:59:09 +00:00
|
|
|
|
|
|
|
#ifndef nsLayoutStylesheetCache_h__
|
|
|
|
#define nsLayoutStylesheetCache_h__
|
|
|
|
|
|
|
|
#include "nsIObserver.h"
|
2010-05-11 20:41:47 +00:00
|
|
|
#include "nsAutoPtr.h"
|
2012-06-19 03:26:34 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-06-23 12:03:39 +00:00
|
|
|
#include "mozilla/MemoryReporting.h"
|
2004-03-09 19:59:09 +00:00
|
|
|
|
|
|
|
class nsIFile;
|
2010-05-11 20:41:47 +00:00
|
|
|
class nsCSSStyleSheet;
|
|
|
|
class nsIURI;
|
2010-03-02 21:00:53 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace css {
|
|
|
|
class Loader;
|
|
|
|
}
|
|
|
|
}
|
2004-03-09 19:59:09 +00:00
|
|
|
|
2012-01-03 02:19:14 +00:00
|
|
|
class nsIMemoryReporter;
|
|
|
|
|
2012-06-19 03:26:34 +00:00
|
|
|
class nsLayoutStylesheetCache MOZ_FINAL
|
2004-03-09 19:59:09 +00:00
|
|
|
: public nsIObserver
|
|
|
|
{
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIOBSERVER
|
|
|
|
|
2010-05-11 20:41:47 +00:00
|
|
|
static nsCSSStyleSheet* ScrollbarsSheet();
|
|
|
|
static nsCSSStyleSheet* FormsSheet();
|
|
|
|
static nsCSSStyleSheet* UserContentSheet();
|
|
|
|
static nsCSSStyleSheet* UserChromeSheet();
|
|
|
|
static nsCSSStyleSheet* UASheet();
|
|
|
|
static nsCSSStyleSheet* QuirkSheet();
|
2011-11-29 22:00:31 +00:00
|
|
|
static nsCSSStyleSheet* FullScreenOverrideSheet();
|
2004-03-09 19:59:09 +00:00
|
|
|
|
|
|
|
static void Shutdown();
|
|
|
|
|
2013-06-23 12:03:39 +00:00
|
|
|
static size_t SizeOfIncludingThis(mozilla::MallocSizeOf aMallocSizeOf);
|
2012-01-03 02:19:14 +00:00
|
|
|
|
2004-03-09 19:59:09 +00:00
|
|
|
private:
|
|
|
|
nsLayoutStylesheetCache();
|
2012-01-03 02:19:14 +00:00
|
|
|
~nsLayoutStylesheetCache();
|
2004-03-09 19:59:09 +00:00
|
|
|
|
|
|
|
static void EnsureGlobal();
|
|
|
|
void InitFromProfile();
|
2010-05-11 20:41:47 +00:00
|
|
|
static void LoadSheetFile(nsIFile* aFile, nsRefPtr<nsCSSStyleSheet> &aSheet);
|
|
|
|
static void LoadSheet(nsIURI* aURI, nsRefPtr<nsCSSStyleSheet> &aSheet,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aEnableUnsafeRules);
|
2004-03-09 19:59:09 +00:00
|
|
|
|
2013-06-23 12:03:39 +00:00
|
|
|
size_t SizeOfIncludingThisHelper(mozilla::MallocSizeOf aMallocSizeOf) const;
|
2012-01-03 02:19:14 +00:00
|
|
|
|
2004-03-09 19:59:09 +00:00
|
|
|
static nsLayoutStylesheetCache* gStyleCache;
|
2010-03-02 21:00:53 +00:00
|
|
|
static mozilla::css::Loader* gCSSLoader;
|
2010-05-11 20:41:47 +00:00
|
|
|
nsRefPtr<nsCSSStyleSheet> mScrollbarsSheet;
|
|
|
|
nsRefPtr<nsCSSStyleSheet> mFormsSheet;
|
|
|
|
nsRefPtr<nsCSSStyleSheet> mUserContentSheet;
|
|
|
|
nsRefPtr<nsCSSStyleSheet> mUserChromeSheet;
|
|
|
|
nsRefPtr<nsCSSStyleSheet> mUASheet;
|
|
|
|
nsRefPtr<nsCSSStyleSheet> mQuirkSheet;
|
2011-11-29 22:00:31 +00:00
|
|
|
nsRefPtr<nsCSSStyleSheet> mFullScreenOverrideSheet;
|
2012-01-03 02:19:14 +00:00
|
|
|
|
2012-10-12 04:05:38 +00:00
|
|
|
nsIMemoryReporter* mReporter;
|
2004-03-09 19:59:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|