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

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

Issue 1103273010: Add parseFontFaceDescriptor for @font-face handling (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: V2 Created 5 years, 8 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
Index: Source/core/css/StyleRule.h
diff --git a/Source/core/css/StyleRule.h b/Source/core/css/StyleRule.h
index 062b5b517848fea6da06297030ed7d34d65bf54c..570a5ca46c9e030f8a91e79ec74d4b7acd19c9b0 100644
--- a/Source/core/css/StyleRule.h
+++ b/Source/core/css/StyleRule.h
@@ -44,12 +44,12 @@ public:
Style,
Import,
Media,
- FontFace,
Page,
Keyframes,
Keyframe,
Namespace,
Supports,
+ FontFace,
Viewport,
};
@@ -141,7 +141,7 @@ public:
const StylePropertySet& properties() const { return *m_properties; }
MutableStylePropertySet& mutableProperties();
- void setProperties(PassRefPtrWillBeRawPtr<StylePropertySet>);
+ bool setProperties(PassRefPtrWillBeRawPtr<StylePropertySet>);
PassRefPtrWillBeRawPtr<StyleRuleFontFace> copy() const { return adoptRefWillBeNoop(new StyleRuleFontFace(*this)); }

Powered by Google App Engine
This is Rietveld 408576698