Index: third_party/WebKit/Source/core/dom/Document.cpp |
diff --git a/third_party/WebKit/Source/core/dom/Document.cpp b/third_party/WebKit/Source/core/dom/Document.cpp |
index 3ae652d4a77fd109b1f91e9e93388b5ee049fd44..d7c9fb00b0e94ef75cdebb2f677ef3d0a7b8723e 100644 |
--- a/third_party/WebKit/Source/core/dom/Document.cpp |
+++ b/third_party/WebKit/Source/core/dom/Document.cpp |
@@ -5762,26 +5762,6 @@ float Document::devicePixelRatio() const |
return m_frame ? m_frame->devicePixelRatio() : 1.0; |
} |
-void Document::removedStyleSheet(StyleSheet* sheet, StyleResolverUpdateMode updateMode) |
-{ |
- // If we're in document teardown, then we don't need this notification of our sheet's removal. |
- // resolverChanged() is needed even when the document is inactive so that imported documents |
- // (which are inactive) notify the change to the master document. |
- if (isActive()) |
- styleEngine().modifiedStyleSheet(sheet); |
- styleEngine().resolverChanged(updateMode); |
-} |
- |
-void Document::modifiedStyleSheet(StyleSheet* sheet, StyleResolverUpdateMode updateMode) |
-{ |
- // If we're in document teardown, then we don't need this notification of our sheet's removal. |
- // resolverChanged() is needed even when the document is inactive so that imported documents |
- // (which are inactive) notify the change to the master document. |
- if (isActive()) |
- styleEngine().modifiedStyleSheet(sheet); |
- styleEngine().resolverChanged(updateMode); |
-} |
- |
TextAutosizer* Document::textAutosizer() |
{ |
if (!m_textAutosizer) |