Chromium Code Reviews| Index: Source/core/dom/Document.h |
| diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h |
| index 5c7c9b1a3ff2cb41c07a12c94835dfa87d13ae37..b0ec33d5bca4c99e1a4733eb58bfda160b59bc0e 100644 |
| --- a/Source/core/dom/Document.h |
| +++ b/Source/core/dom/Document.h |
| @@ -1045,6 +1045,9 @@ public: |
| bool hasSVGFilterElementsRequiringLayerUpdate() const { return m_layerUpdateSVGFilterElements.size(); } |
| void didRecalculateStyleForElement() { ++m_styleRecalcElementCounter; } |
| + // Public for use by MediaQueryMatcher |
| + ScriptedAnimationController& ensureScriptedAnimationController(); |
|
esprehn
2014/07/01 00:01:06
This should not be public.
cbiesinger
2014/07/01 00:12:09
(see above)
|
| + |
| protected: |
| Document(const DocumentInit&, DocumentClassFlags = DefaultDocumentClass); |
| @@ -1065,7 +1068,6 @@ private: |
| friend class Node; |
| friend class IgnoreDestructiveWriteCountIncrementer; |
| - ScriptedAnimationController& ensureScriptedAnimationController(); |
| virtual SecurityContext& securityContext() OVERRIDE FINAL { return *this; } |
| virtual EventQueue* eventQueue() const OVERRIDE FINAL; |