Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(485)

Unified Diff: Source/core/css/FontFace.h

Issue 1303173007: Oilpan: Unship Oilpan from CSSValues Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/css/ComputedStyleCSSValueMapping.cpp ('k') | Source/core/css/FontFace.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/FontFace.h
diff --git a/Source/core/css/FontFace.h b/Source/core/css/FontFace.h
index a96852fce7ca878a9d5dfdf62c5c1d2d6772b2d3..0efc107c00e0baff8174109ffc5531ab0e79eb97 100644
--- a/Source/core/css/FontFace.h
+++ b/Source/core/css/FontFace.h
@@ -120,11 +120,11 @@ private:
explicit FontFace(ExecutionContext*);
FontFace(ExecutionContext*, const AtomicString& family, const FontFaceDescriptors&);
- void initCSSFontFace(Document*, PassRefPtrWillBeRawPtr<CSSValue> src);
+ void initCSSFontFace(Document*, PassRefPtr<CSSValue> src);
void initCSSFontFace(const unsigned char* data, unsigned size);
void setPropertyFromString(const Document*, const String&, CSSPropertyID, ExceptionState* = 0);
bool setPropertyFromStyle(const StylePropertySet&, CSSPropertyID);
- bool setPropertyValue(PassRefPtrWillBeRawPtr<CSSValue>, CSSPropertyID);
+ bool setPropertyValue(PassRefPtr<CSSValue>, CSSPropertyID);
bool setFamilyValue(CSSValueList*);
void loadInternal(ExecutionContext*);
ScriptPromise fontStatusPromise(ScriptState*);
@@ -133,13 +133,13 @@ private:
AtomicString m_family;
String m_otsParseMessage;
- RefPtrWillBeMember<CSSValue> m_src;
- RefPtrWillBeMember<CSSValue> m_style;
- RefPtrWillBeMember<CSSValue> m_weight;
- RefPtrWillBeMember<CSSValue> m_stretch;
- RefPtrWillBeMember<CSSValue> m_unicodeRange;
- RefPtrWillBeMember<CSSValue> m_variant;
- RefPtrWillBeMember<CSSValue> m_featureSettings;
+ RefPtr<CSSValue> m_src;
+ RefPtr<CSSValue> m_style;
+ RefPtr<CSSValue> m_weight;
+ RefPtr<CSSValue> m_stretch;
+ RefPtr<CSSValue> m_unicodeRange;
+ RefPtr<CSSValue> m_variant;
+ RefPtr<CSSValue> m_featureSettings;
LoadStatus m_status;
PersistentWillBeMember<DOMException> m_error;
« no previous file with comments | « Source/core/css/ComputedStyleCSSValueMapping.cpp ('k') | Source/core/css/FontFace.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698