Index: Source/core/dom/StyleSheetCollection.h |
diff --git a/Source/core/dom/StyleSheetCollection.h b/Source/core/dom/StyleSheetCollection.h |
index 9c9023355ab0cefdf9a7596df7b225c655ea92e7..d66188fda7dc9ebf88f0ac8e96b422f1d4b5ea30 100644 |
--- a/Source/core/dom/StyleSheetCollection.h |
+++ b/Source/core/dom/StyleSheetCollection.h |
@@ -48,6 +48,7 @@ class Node; |
class StyleSheet; |
class StyleSheetContents; |
class StyleSheetList; |
+class StyleRuleFontFace; |
// FIXME: Should be in separate file and be renamed like: |
// - StyleSheetCollectionBase -> StyleSheetCollection |
@@ -98,13 +99,13 @@ protected: |
enum StyleResolverUpdateType { |
Reconstruct, |
Reset, |
- Additive, |
- ResetStyleResolverAndFontSelector |
+ Additive |
}; |
struct StyleSheetChange { |
StyleResolverUpdateType styleResolverUpdateType; |
bool requiresFullStyleRecalc; |
+ Vector<const StyleRuleFontFace*> removedFontFace; |
dglazkov
2013/11/25 16:27:29
fontFaceRulesToRemove?
tasak
2013/11/26 07:49:06
Done.
|
StyleSheetChange() |
: styleResolverUpdateType(Reconstruct) |