HomeSort by relevance Sort by last modified time
    Searched refs:FontLoader (Results 1 - 25 of 26) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/css/
FontLoader.h 19 class FontLoader : public RefCountedWillBeGarbageCollectedFinalized<FontLoader> {
21 static PassRefPtrWillBeRawPtr<FontLoader> create(CSSFontSelector* fontSelector, ResourceFetcher* fetcher)
23 return adoptRefWillBeNoop(new FontLoader(fontSelector, fetcher));
25 ~FontLoader();
38 FontLoader(CSSFontSelector*, ResourceFetcher*);
39 void beginLoadTimerFired(Timer<FontLoader>*);
42 Timer<FontLoader> m_beginLoadingTimer;
FontLoader.cpp 6 #include "core/css/FontLoader.h"
14 FontLoader::FontLoader(CSSFontSelector* fontSelector, ResourceFetcher* resourceFetcher)
15 : m_beginLoadingTimer(this, &FontLoader::beginLoadTimerFired)
21 FontLoader::~FontLoader()
30 // fonts that were pending at the time the FontLoader dies.
35 void FontLoader::addFontToBeginLoading(FontResource* fontResource)
47 void FontLoader::beginLoadTimerFired(Timer<blink::FontLoader>*)
    [all...]
RemoteFontFaceSource.h 14 class FontLoader;
18 explicit RemoteFontFaceSource(FontResource*, PassRefPtrWillBeRawPtr<FontLoader>);
64 RefPtrWillBeMember<FontLoader> m_fontLoader;
CSSFontSelector.h 30 #include "core/css/FontLoader.h"
74 FontLoader* fontLoader() { return m_fontLoader.get(); }
94 RefPtrWillBeMember<FontLoader> m_fontLoader;
CSSFontSelector.cpp 48 , m_fontLoader(FontLoader::create(this, document->fetcher()))
RemoteFontFaceSource.cpp 10 #include "core/css/FontLoader.h"
19 RemoteFontFaceSource::RemoteFontFaceSource(FontResource* font, PassRefPtrWillBeRawPtr<FontLoader> fontLoader)
21 , m_fontLoader(fontLoader)
FontFace.cpp 384 toDocument(context)->styleEngine()->fontSelector()->fontLoader()->loadPendingFonts();
528 FontLoader* fontLoader = document->styleEngine()->fontSelector()->fontLoader();
532 source = adoptPtrWillBeNoop(new SVGRemoteFontFaceSource(item->resource(), fetched, fontLoader));
536 source = adoptPtrWillBeNoop(new RemoteFontFaceSource(fetched, fontLoader));
  /external/chromium_org/content/common/mac/
font_loader.h 27 class FontLoader {
49 static void LoadFont(const FontDescriptor& font, FontLoader::Result* result);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGRemoteFontFaceSource.h 19 SVGRemoteFontFaceSource(const String& uri, FontResource*, PassRefPtrWillBeRawPtr<FontLoader>);
SVGRemoteFontFaceSource.cpp 10 #include "core/css/FontLoader.h"
20 SVGRemoteFontFaceSource::SVGRemoteFontFaceSource(const String& uri, FontResource* font, PassRefPtrWillBeRawPtr<FontLoader> fontLoader)
21 : RemoteFontFaceSource(font, fontLoader)
  /external/chromium_org/content/browser/renderer_host/
render_message_filter.cc 665 FontLoader::Result* result = new FontLoader::Result;
669 base::Bind(&FontLoader::LoadFont, font, result),
675 FontLoader::Result* result) {
    [all...]
render_message_filter.h 170 void SendLoadFontReply(IPC::Message* reply, FontLoader::Result* result);
  /external/chromium_org/content/renderer/
renderer_webkitplatformsupport_impl.cc 573 return FontLoader::CGFontRefFromBuffer(font_data, font_data_size, out);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_remaining.target.darwin-arm.mk 184 third_party/WebKit/Source/core/css/FontLoader.cpp \
    [all...]
webcore_remaining.target.darwin-arm64.mk 184 third_party/WebKit/Source/core/css/FontLoader.cpp \
    [all...]
webcore_remaining.target.darwin-mips.mk 184 third_party/WebKit/Source/core/css/FontLoader.cpp \
    [all...]
webcore_remaining.target.darwin-mips64.mk 184 third_party/WebKit/Source/core/css/FontLoader.cpp \
    [all...]
webcore_remaining.target.darwin-x86.mk 184 third_party/WebKit/Source/core/css/FontLoader.cpp \
    [all...]
webcore_remaining.target.darwin-x86_64.mk 184 third_party/WebKit/Source/core/css/FontLoader.cpp \
    [all...]
webcore_remaining.target.linux-arm.mk 184 third_party/WebKit/Source/core/css/FontLoader.cpp \
    [all...]
webcore_remaining.target.linux-arm64.mk 184 third_party/WebKit/Source/core/css/FontLoader.cpp \
    [all...]
webcore_remaining.target.linux-mips.mk 184 third_party/WebKit/Source/core/css/FontLoader.cpp \
    [all...]
webcore_remaining.target.linux-mips64.mk 184 third_party/WebKit/Source/core/css/FontLoader.cpp \
    [all...]
webcore_remaining.target.linux-x86.mk 184 third_party/WebKit/Source/core/css/FontLoader.cpp \
    [all...]
webcore_remaining.target.linux-x86_64.mk 184 third_party/WebKit/Source/core/css/FontLoader.cpp \
    [all...]

Completed in 965 milliseconds

1 2