| Index: Source/core/css/FontFace.h
|
| diff --git a/Source/core/css/FontFace.h b/Source/core/css/FontFace.h
|
| index 52ce4422a3e692bfe94b36fbe94bf71d4ac0343f..3d8fc0e29122111ff132b90024434c0b93b9e58b 100644
|
| --- a/Source/core/css/FontFace.h
|
| +++ b/Source/core/css/FontFace.h
|
| @@ -58,9 +58,9 @@ class FontFace : public RefCountedWillBeGarbageCollectedFinalized<FontFace>, pub
|
| public:
|
| enum LoadStatus { Unloaded, Loading, Loaded, Error };
|
|
|
| - static PassRefPtrWillBeRawPtr<FontFace> create(ExecutionContext*, const AtomicString& family, PassRefPtr<ArrayBuffer> source, const FontFaceDescriptors*);
|
| - static PassRefPtrWillBeRawPtr<FontFace> create(ExecutionContext*, const AtomicString& family, PassRefPtr<ArrayBufferView>, const FontFaceDescriptors*);
|
| - static PassRefPtrWillBeRawPtr<FontFace> create(ExecutionContext*, const AtomicString& family, const String& source, const FontFaceDescriptors*);
|
| + static PassRefPtrWillBeRawPtr<FontFace> create(ExecutionContext*, const AtomicString& family, PassRefPtr<ArrayBuffer> source, const FontFaceDescriptors&);
|
| + static PassRefPtrWillBeRawPtr<FontFace> create(ExecutionContext*, const AtomicString& family, PassRefPtr<ArrayBufferView>, const FontFaceDescriptors&);
|
| + static PassRefPtrWillBeRawPtr<FontFace> create(ExecutionContext*, const AtomicString& family, const String& source, const FontFaceDescriptors&);
|
| static PassRefPtrWillBeRawPtr<FontFace> create(Document*, const StyleRuleFontFace*);
|
|
|
| ~FontFace();
|
| @@ -109,7 +109,7 @@ public:
|
|
|
| private:
|
| FontFace();
|
| - FontFace(ExecutionContext*, const AtomicString& family, const FontFaceDescriptors*);
|
| + FontFace(ExecutionContext*, const AtomicString& family, const FontFaceDescriptors&);
|
|
|
| void initCSSFontFace(Document*, PassRefPtrWillBeRawPtr<CSSValue> src);
|
| void initCSSFontFace(const unsigned char* data, unsigned size);
|
|
|