Index: third_party/WebKit/Source/core/dom/ShadowTreeStyleSheetCollection.h |
diff --git a/third_party/WebKit/Source/core/dom/ShadowTreeStyleSheetCollection.h b/third_party/WebKit/Source/core/dom/ShadowTreeStyleSheetCollection.h |
index db5f32c1228c7689295251dcfea06176b4287483..d86803bf87c646c5d50f899c4fac8b6663cb33f6 100644 |
--- a/third_party/WebKit/Source/core/dom/ShadowTreeStyleSheetCollection.h |
+++ b/third_party/WebKit/Source/core/dom/ShadowTreeStyleSheetCollection.h |
@@ -36,7 +36,6 @@ namespace blink { |
class ShadowRoot; |
class StyleSheetCollection; |
-class StyleEngine; |
class ShadowTreeStyleSheetCollection final |
: public TreeScopeStyleSheetCollection { |
@@ -44,9 +43,7 @@ class ShadowTreeStyleSheetCollection final |
public: |
explicit ShadowTreeStyleSheetCollection(ShadowRoot&); |
- |
- void updateActiveStyleSheets(StyleEngine&, StyleResolverUpdateMode); |
- |
+ void updateActiveStyleSheets(); |
bool isShadowTreeStyleSheetCollection() const final { return true; } |
DEFINE_INLINE_VIRTUAL_TRACE() { |
@@ -54,7 +51,7 @@ class ShadowTreeStyleSheetCollection final |
} |
private: |
- void collectStyleSheets(StyleEngine&, StyleSheetCollection&); |
+ void collectStyleSheets(StyleSheetCollection&); |
}; |
DEFINE_TYPE_CASTS(ShadowTreeStyleSheetCollection, |