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

Side by Side Diff: Source/core/rendering/style/RenderStyle.h

Issue 45553002: Move remaining classes in graphics/transforms to platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix merge problem Created 7 years, 1 month 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
« no previous file with comments | « Source/core/rendering/RenderLayer.cpp ('k') | Source/core/rendering/style/StyleTransformData.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) 3 * (C) 2000 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved. 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved.
6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com)
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 15 matching lines...) Expand all
26 #define RenderStyle_h 26 #define RenderStyle_h
27 27
28 #include "CSSPropertyNames.h" 28 #include "CSSPropertyNames.h"
29 #include "core/css/CSSLengthFunctions.h" 29 #include "core/css/CSSLengthFunctions.h"
30 #include "core/css/CSSLineBoxContainValue.h" 30 #include "core/css/CSSLineBoxContainValue.h"
31 #include "core/css/CSSPrimitiveValue.h" 31 #include "core/css/CSSPrimitiveValue.h"
32 #include "core/platform/ThemeTypes.h" 32 #include "core/platform/ThemeTypes.h"
33 #include "core/platform/animation/CSSAnimationDataList.h" 33 #include "core/platform/animation/CSSAnimationDataList.h"
34 #include "core/platform/graphics/Color.h" 34 #include "core/platform/graphics/Color.h"
35 #include "core/platform/graphics/FontDescription.h" 35 #include "core/platform/graphics/FontDescription.h"
36 #include "core/platform/graphics/transforms/TransformOperations.h"
37 #include "core/rendering/style/BorderValue.h" 36 #include "core/rendering/style/BorderValue.h"
38 #include "core/rendering/style/CounterDirectives.h" 37 #include "core/rendering/style/CounterDirectives.h"
39 #include "core/rendering/style/DataRef.h" 38 #include "core/rendering/style/DataRef.h"
40 #include "core/rendering/style/LineClampValue.h" 39 #include "core/rendering/style/LineClampValue.h"
41 #include "core/rendering/style/NinePieceImage.h" 40 #include "core/rendering/style/NinePieceImage.h"
42 #include "core/rendering/style/OutlineValue.h" 41 #include "core/rendering/style/OutlineValue.h"
43 #include "core/rendering/style/RenderStyleConstants.h" 42 #include "core/rendering/style/RenderStyleConstants.h"
44 #include "core/rendering/style/SVGRenderStyle.h" 43 #include "core/rendering/style/SVGRenderStyle.h"
45 #include "core/rendering/style/ShapeValue.h" 44 #include "core/rendering/style/ShapeValue.h"
46 #include "core/rendering/style/StyleBackgroundData.h" 45 #include "core/rendering/style/StyleBackgroundData.h"
(...skipping 14 matching lines...) Expand all
61 #include "core/svg/SVGPaint.h" 60 #include "core/svg/SVGPaint.h"
62 #include "platform/Length.h" 61 #include "platform/Length.h"
63 #include "platform/LengthBox.h" 62 #include "platform/LengthBox.h"
64 #include "platform/LengthSize.h" 63 #include "platform/LengthSize.h"
65 #include "platform/fonts/FontBaseline.h" 64 #include "platform/fonts/FontBaseline.h"
66 #include "platform/geometry/LayoutBoxExtent.h" 65 #include "platform/geometry/LayoutBoxExtent.h"
67 #include "platform/geometry/RoundedRect.h" 66 #include "platform/geometry/RoundedRect.h"
68 #include "platform/graphics/GraphicsTypes.h" 67 #include "platform/graphics/GraphicsTypes.h"
69 #include "platform/text/TextDirection.h" 68 #include "platform/text/TextDirection.h"
70 #include "platform/text/UnicodeBidi.h" 69 #include "platform/text/UnicodeBidi.h"
70 #include "platform/transforms/TransformOperations.h"
71 #include "wtf/Forward.h" 71 #include "wtf/Forward.h"
72 #include "wtf/OwnPtr.h" 72 #include "wtf/OwnPtr.h"
73 #include "wtf/RefCounted.h" 73 #include "wtf/RefCounted.h"
74 #include "wtf/StdLibExtras.h" 74 #include "wtf/StdLibExtras.h"
75 #include "wtf/Vector.h" 75 #include "wtf/Vector.h"
76 76
77 template<typename T, typename U> inline bool compareEqual(const T& t, const U& u ) { return t == static_cast<T>(u); } 77 template<typename T, typename U> inline bool compareEqual(const T& t, const U& u ) { return t == static_cast<T>(u); }
78 78
79 #define SET_VAR(group, variable, value) \ 79 #define SET_VAR(group, variable, value) \
80 if (!compareEqual(group->variable, value)) \ 80 if (!compareEqual(group->variable, value)) \
(...skipping 1734 matching lines...) Expand 10 before | Expand all | Expand 10 after
1815 if (compareEqual(rareInheritedData->m_textOrientation, textOrientation)) 1815 if (compareEqual(rareInheritedData->m_textOrientation, textOrientation))
1816 return false; 1816 return false;
1817 1817
1818 rareInheritedData.access()->m_textOrientation = textOrientation; 1818 rareInheritedData.access()->m_textOrientation = textOrientation;
1819 return true; 1819 return true;
1820 } 1820 }
1821 1821
1822 } // namespace WebCore 1822 } // namespace WebCore
1823 1823
1824 #endif // RenderStyle_h 1824 #endif // RenderStyle_h
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderLayer.cpp ('k') | Source/core/rendering/style/StyleTransformData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698