HomeSort by relevance Sort by last modified time
    Searched defs:FontFace (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/css/
FontFace.h 54 class FontFace : public RefCountedWillBeGarbageCollectedFinalized<FontFace> {
58 static PassRefPtrWillBeRawPtr<FontFace> create(ExecutionContext*, const AtomicString& family, PassRefPtr<ArrayBuffer> source, const Dictionary&, ExceptionState&);
59 static PassRefPtrWillBeRawPtr<FontFace> create(ExecutionContext*, const AtomicString& family, PassRefPtr<ArrayBufferView>, const Dictionary&, ExceptionState&);
60 static PassRefPtrWillBeRawPtr<FontFace> create(ExecutionContext*, const AtomicString& family, const String& source, const Dictionary&, ExceptionState&);
61 static PassRefPtrWillBeRawPtr<FontFace> create(Document*, const StyleRuleFontFace*);
63 ~FontFace();
100 virtual void notifyLoaded(FontFace*) = 0;
101 virtual void notifyError(FontFace*) = 0;
107 FontFace();
    [all...]
FontFace.cpp 32 #include "core/css/FontFace.h"
72 void resolve(PassRefPtrWillBeRawPtr<FontFace> fontFace)
74 switch (fontFace->loadStatus()) {
75 case FontFace::Loaded:
76 m_resolver->resolve(fontFace);
78 case FontFace::Error:
79 m_resolver->reject(fontFace->error());
106 static bool initFontFace(FontFace* fontFace, ExecutionContext* context, const AtomicString& family, const Dictionary& descriptors, ExceptionSt (…)
    [all...]
StyleRule.h 47 FontFace,
59 bool isFontFaceRule() const { return type() == FontFace; }
287 DEFINE_STYLE_RULE_TYPE_CASTS(FontFace);

Completed in 65 milliseconds