This source file includes following definitions.
- instance
- add
- removeAll
- invalidateInjectedStyleSheetCacheInAllFrames
#include "config.h"
#include "core/page/InjectedStyleSheets.h"
#include "core/dom/Document.h"
#include "core/dom/StyleEngine.h"
#include "core/frame/LocalFrame.h"
#include "core/page/Page.h"
#include "wtf/HashSet.h"
namespace WebCore {
InjectedStyleSheets& InjectedStyleSheets::instance()
{
DEFINE_STATIC_LOCAL(InjectedStyleSheets, instance, ());
return instance;
}
void InjectedStyleSheets::add(const String& source, const Vector<String>& whitelist, StyleInjectionTarget injectIn)
{
m_entries.append(adoptPtr(new InjectedStyleSheetEntry(source, whitelist, injectIn)));
invalidateInjectedStyleSheetCacheInAllFrames();
}
void InjectedStyleSheets::removeAll()
{
m_entries.clear();
invalidateInjectedStyleSheetCacheInAllFrames();
}
void InjectedStyleSheets::invalidateInjectedStyleSheetCacheInAllFrames()
{
const HashSet<Page*>& pages = Page::ordinaryPages();
HashSet<Page*>::const_iterator end = pages.end();
for (HashSet<Page*>::const_iterator it = pages.begin(); it != end; ++it) {
for (LocalFrame* frame = (*it)->mainFrame(); frame; frame = frame->tree().traverseNext())
frame->document()->styleEngine()->invalidateInjectedStyleSheetCache();
}
}
}