Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(34)

Side by Side Diff: third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp

Issue 2813863003: Rewrite references to "wtf/" to "platform/wtf/" in core/css and core/style. (Closed)
Patch Set: Rebase. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698