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

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

Issue 14488003: Absolutify paths to platform/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: scripts, iwyu Created 7 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 | Annotate | Revision Log
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 14 matching lines...) Expand all
25 #ifndef RenderStyle_h 25 #ifndef RenderStyle_h
26 #define RenderStyle_h 26 #define RenderStyle_h
27 27
28 #include "BorderValue.h" 28 #include "BorderValue.h"
29 #include "CSSLineBoxContainValue.h" 29 #include "CSSLineBoxContainValue.h"
30 #include "CSSPrimitiveValue.h" 30 #include "CSSPrimitiveValue.h"
31 #include "CSSPropertyNames.h" 31 #include "CSSPropertyNames.h"
32 #include "CounterDirectives.h" 32 #include "CounterDirectives.h"
33 #include "DataRef.h" 33 #include "DataRef.h"
34 #include "ExclusionShapeValue.h" 34 #include "ExclusionShapeValue.h"
35 #include "Length.h"
36 #include "LengthBox.h"
37 #include "LengthFunctions.h" 35 #include "LengthFunctions.h"
38 #include "LengthSize.h"
39 #include "LineClampValue.h" 36 #include "LineClampValue.h"
40 #include "NinePieceImage.h" 37 #include "NinePieceImage.h"
41 #include "OutlineValue.h" 38 #include "OutlineValue.h"
42 #include "RenderStyleConstants.h" 39 #include "RenderStyleConstants.h"
43 #include "ShadowData.h" 40 #include "ShadowData.h"
44 #include "StyleBackgroundData.h" 41 #include "StyleBackgroundData.h"
45 #include "StyleBoxData.h" 42 #include "StyleBoxData.h"
46 #include "StyleDeprecatedFlexibleBoxData.h" 43 #include "StyleDeprecatedFlexibleBoxData.h"
47 #include "StyleFlexibleBoxData.h" 44 #include "StyleFlexibleBoxData.h"
48 #include "StyleGridData.h" 45 #include "StyleGridData.h"
49 #include "StyleGridItemData.h" 46 #include "StyleGridItemData.h"
50 #include "StyleMarqueeData.h" 47 #include "StyleMarqueeData.h"
51 #include "StyleMultiColData.h" 48 #include "StyleMultiColData.h"
52 #include "StyleRareInheritedData.h" 49 #include "StyleRareInheritedData.h"
53 #include "StyleRareNonInheritedData.h" 50 #include "StyleRareNonInheritedData.h"
54 #include "StyleReflection.h" 51 #include "StyleReflection.h"
55 #include "StyleSurroundData.h" 52 #include "StyleSurroundData.h"
56 #include "StyleTransformData.h" 53 #include "StyleTransformData.h"
57 #include "StyleVisualData.h" 54 #include "StyleVisualData.h"
58 #include "ThemeTypes.h" 55 #include "core/platform/Length.h"
56 #include "core/platform/LengthBox.h"
57 #include "core/platform/LengthSize.h"
58 #include "core/platform/ThemeTypes.h"
59 #include "core/platform/animation/AnimationList.h" 59 #include "core/platform/animation/AnimationList.h"
60 #include "core/platform/graphics/Color.h" 60 #include "core/platform/graphics/Color.h"
61 #include "core/platform/graphics/ColorSpace.h" 61 #include "core/platform/graphics/ColorSpace.h"
62 #include "core/platform/graphics/FontBaseline.h" 62 #include "core/platform/graphics/FontBaseline.h"
63 #include "core/platform/graphics/FontDescription.h" 63 #include "core/platform/graphics/FontDescription.h"
64 #include "core/platform/graphics/GraphicsTypes.h" 64 #include "core/platform/graphics/GraphicsTypes.h"
65 #include "core/platform/graphics/LayoutBoxExtent.h" 65 #include "core/platform/graphics/LayoutBoxExtent.h"
66 #include "core/platform/graphics/RoundedRect.h" 66 #include "core/platform/graphics/RoundedRect.h"
67 #include "core/platform/graphics/transforms/TransformOperations.h" 67 #include "core/platform/graphics/transforms/TransformOperations.h"
68 #include "core/platform/text/TextDirection.h" 68 #include "core/platform/text/TextDirection.h"
(...skipping 1736 matching lines...) Expand 10 before | Expand all | Expand 10 after
1805 if (compareEqual(rareInheritedData->m_textOrientation, textOrientation)) 1805 if (compareEqual(rareInheritedData->m_textOrientation, textOrientation))
1806 return false; 1806 return false;
1807 1807
1808 rareInheritedData.access()->m_textOrientation = textOrientation; 1808 rareInheritedData.access()->m_textOrientation = textOrientation;
1809 return true; 1809 return true;
1810 } 1810 }
1811 1811
1812 } // namespace WebCore 1812 } // namespace WebCore
1813 1813
1814 #endif // RenderStyle_h 1814 #endif // RenderStyle_h
OLDNEW
« no previous file with comments | « Source/core/rendering/style/NinePieceImage.h ('k') | Source/core/rendering/style/StyleBoxData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698