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

Side by Side Diff: third_party/WebKit/Source/core/style/ComputedStyle.cpp

Issue 1618563002: Forward declare StyleVariableData in StyleRareInheritedData instead of including it (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 Antti Koivisto (koivisto@kde.org) 2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org)
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
4 * Copyright (C) 2011 Adobe Systems Incorporated. All rights reserved. 4 * Copyright (C) 2011 Adobe Systems Incorporated. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 17 matching lines...) Expand all
28 #include "core/style/AppliedTextDecoration.h" 28 #include "core/style/AppliedTextDecoration.h"
29 #include "core/style/BorderEdge.h" 29 #include "core/style/BorderEdge.h"
30 #include "core/style/ContentData.h" 30 #include "core/style/ContentData.h"
31 #include "core/style/DataEquivalency.h" 31 #include "core/style/DataEquivalency.h"
32 #include "core/style/ComputedStyleConstants.h" 32 #include "core/style/ComputedStyleConstants.h"
33 #include "core/style/PathStyleMotionPath.h" 33 #include "core/style/PathStyleMotionPath.h"
34 #include "core/style/QuotesData.h" 34 #include "core/style/QuotesData.h"
35 #include "core/style/ShadowList.h" 35 #include "core/style/ShadowList.h"
36 #include "core/style/StyleImage.h" 36 #include "core/style/StyleImage.h"
37 #include "core/style/StyleInheritedData.h" 37 #include "core/style/StyleInheritedData.h"
38 #include "core/style/StyleVariableData.h"
38 #include "platform/LengthFunctions.h" 39 #include "platform/LengthFunctions.h"
39 #include "platform/RuntimeEnabledFeatures.h" 40 #include "platform/RuntimeEnabledFeatures.h"
40 #include "platform/fonts/Font.h" 41 #include "platform/fonts/Font.h"
41 #include "platform/fonts/FontSelector.h" 42 #include "platform/fonts/FontSelector.h"
42 #include "platform/geometry/FloatRoundedRect.h" 43 #include "platform/geometry/FloatRoundedRect.h"
43 #include "platform/graphics/GraphicsContext.h" 44 #include "platform/graphics/GraphicsContext.h"
44 #include "platform/transforms/RotateTransformOperation.h" 45 #include "platform/transforms/RotateTransformOperation.h"
45 #include "platform/transforms/ScaleTransformOperation.h" 46 #include "platform/transforms/ScaleTransformOperation.h"
46 #include "platform/transforms/TranslateTransformOperation.h" 47 #include "platform/transforms/TranslateTransformOperation.h"
47 #include "wtf/MathExtras.h" 48 #include "wtf/MathExtras.h"
(...skipping 1781 matching lines...) Expand 10 before | Expand all | Expand 10 after
1829 } 1830 }
1830 1831
1831 void ComputedStyle::copyChildDependentFlagsFrom(const ComputedStyle& other) 1832 void ComputedStyle::copyChildDependentFlagsFrom(const ComputedStyle& other)
1832 { 1833 {
1833 setEmptyState(other.emptyState()); 1834 setEmptyState(other.emptyState());
1834 if (other.hasExplicitlyInheritedProperties()) 1835 if (other.hasExplicitlyInheritedProperties())
1835 setHasExplicitlyInheritedProperties(); 1836 setHasExplicitlyInheritedProperties();
1836 } 1837 }
1837 1838
1838 } // namespace blink 1839 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyle.h ('k') | third_party/WebKit/Source/core/style/StyleRareInheritedData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698