| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) | 3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) |
| 4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) | 4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) |
| 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. | 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. |
| 6 * All rights reserved. | 6 * All rights reserved. |
| 7 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> | 7 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> |
| 8 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> | 8 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> |
| 9 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. | 9 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. |
| 10 * (http://www.torchmobile.com/) | 10 * (http://www.torchmobile.com/) |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 #include "core/frame/LocalFrame.h" | 86 #include "core/frame/LocalFrame.h" |
| 87 #include "core/frame/Settings.h" | 87 #include "core/frame/Settings.h" |
| 88 #include "core/frame/UseCounter.h" | 88 #include "core/frame/UseCounter.h" |
| 89 #include "core/html/HTMLIFrameElement.h" | 89 #include "core/html/HTMLIFrameElement.h" |
| 90 #include "core/html/HTMLSlotElement.h" | 90 #include "core/html/HTMLSlotElement.h" |
| 91 #include "core/layout/GeneratedChildren.h" | 91 #include "core/layout/GeneratedChildren.h" |
| 92 #include "core/probe/CoreProbes.h" | 92 #include "core/probe/CoreProbes.h" |
| 93 #include "core/style/StyleInheritedVariables.h" | 93 #include "core/style/StyleInheritedVariables.h" |
| 94 #include "core/svg/SVGElement.h" | 94 #include "core/svg/SVGElement.h" |
| 95 #include "platform/RuntimeEnabledFeatures.h" | 95 #include "platform/RuntimeEnabledFeatures.h" |
| 96 #include "wtf/StdLibExtras.h" | 96 #include "platform/wtf/StdLibExtras.h" |
| 97 | 97 |
| 98 namespace blink { | 98 namespace blink { |
| 99 | 99 |
| 100 namespace { | 100 namespace { |
| 101 | 101 |
| 102 void SetAnimationUpdateIfNeeded(StyleResolverState& state, Element& element) { | 102 void SetAnimationUpdateIfNeeded(StyleResolverState& state, Element& element) { |
| 103 // If any changes to CSS Animations were detected, stash the update away for | 103 // If any changes to CSS Animations were detected, stash the update away for |
| 104 // application after the layout object is updated if we're in the appropriate | 104 // application after the layout object is updated if we're in the appropriate |
| 105 // scope. | 105 // scope. |
| 106 if (!state.AnimationUpdate().IsEmpty()) | 106 if (!state.AnimationUpdate().IsEmpty()) |
| (...skipping 1910 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2017 | 2017 |
| 2018 DEFINE_TRACE(StyleResolver) { | 2018 DEFINE_TRACE(StyleResolver) { |
| 2019 visitor->Trace(matched_properties_cache_); | 2019 visitor->Trace(matched_properties_cache_); |
| 2020 visitor->Trace(selector_filter_); | 2020 visitor->Trace(selector_filter_); |
| 2021 visitor->Trace(style_sharing_lists_); | 2021 visitor->Trace(style_sharing_lists_); |
| 2022 visitor->Trace(document_); | 2022 visitor->Trace(document_); |
| 2023 visitor->Trace(tracker_); | 2023 visitor->Trace(tracker_); |
| 2024 } | 2024 } |
| 2025 | 2025 |
| 2026 } // namespace blink | 2026 } // namespace blink |
| OLD | NEW |