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

Side by Side Diff: Source/core/style/ComputedStyle.h

Issue 1045723009: Move core/layout/style to core/style (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase. Created 5 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
« no previous file with comments | « Source/core/style/CollapsedBorderValue.h ('k') | Source/core/style/ComputedStyle.cpp » ('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 13 matching lines...) Expand all
24 24
25 #ifndef ComputedStyle_h 25 #ifndef ComputedStyle_h
26 #define ComputedStyle_h 26 #define ComputedStyle_h
27 27
28 #include "core/CSSPropertyNames.h" 28 #include "core/CSSPropertyNames.h"
29 #include "core/CoreExport.h" 29 #include "core/CoreExport.h"
30 #include "core/animation/css/CSSAnimationData.h" 30 #include "core/animation/css/CSSAnimationData.h"
31 #include "core/animation/css/CSSTransitionData.h" 31 #include "core/animation/css/CSSTransitionData.h"
32 #include "core/css/CSSLineBoxContainValue.h" 32 #include "core/css/CSSLineBoxContainValue.h"
33 #include "core/css/CSSPrimitiveValue.h" 33 #include "core/css/CSSPrimitiveValue.h"
34 #include "core/layout/style/BorderValue.h" 34 #include "core/style/BorderValue.h"
35 #include "core/layout/style/CounterDirectives.h" 35 #include "core/style/CounterDirectives.h"
36 #include "core/layout/style/DataRef.h" 36 #include "core/style/DataRef.h"
37 #include "core/layout/style/ComputedStyleConstants.h" 37 #include "core/style/ComputedStyleConstants.h"
38 #include "core/layout/style/LineClampValue.h" 38 #include "core/style/LineClampValue.h"
39 #include "core/layout/style/NinePieceImage.h" 39 #include "core/style/NinePieceImage.h"
40 #include "core/layout/style/OutlineValue.h" 40 #include "core/style/OutlineValue.h"
41 #include "core/layout/style/SVGComputedStyle.h" 41 #include "core/style/SVGComputedStyle.h"
42 #include "core/layout/style/ShapeValue.h" 42 #include "core/style/ShapeValue.h"
43 #include "core/layout/style/StyleBackgroundData.h" 43 #include "core/style/StyleBackgroundData.h"
44 #include "core/layout/style/StyleBoxData.h" 44 #include "core/style/StyleBoxData.h"
45 #include "core/layout/style/StyleDeprecatedFlexibleBoxData.h" 45 #include "core/style/StyleDeprecatedFlexibleBoxData.h"
46 #include "core/layout/style/StyleDifference.h" 46 #include "core/style/StyleDifference.h"
47 #include "core/layout/style/StyleFilterData.h" 47 #include "core/style/StyleFilterData.h"
48 #include "core/layout/style/StyleFlexibleBoxData.h" 48 #include "core/style/StyleFlexibleBoxData.h"
49 #include "core/layout/style/StyleGridData.h" 49 #include "core/style/StyleGridData.h"
50 #include "core/layout/style/StyleGridItemData.h" 50 #include "core/style/StyleGridItemData.h"
51 #include "core/layout/style/StyleInheritedData.h" 51 #include "core/style/StyleInheritedData.h"
52 #include "core/layout/style/StyleMotionPath.h" 52 #include "core/style/StyleMotionPath.h"
53 #include "core/layout/style/StyleMultiColData.h" 53 #include "core/style/StyleMultiColData.h"
54 #include "core/layout/style/StyleRareInheritedData.h" 54 #include "core/style/StyleRareInheritedData.h"
55 #include "core/layout/style/StyleRareNonInheritedData.h" 55 #include "core/style/StyleRareNonInheritedData.h"
56 #include "core/layout/style/StyleReflection.h" 56 #include "core/style/StyleReflection.h"
57 #include "core/layout/style/StyleSurroundData.h" 57 #include "core/style/StyleSurroundData.h"
58 #include "core/layout/style/StyleTransformData.h" 58 #include "core/style/StyleTransformData.h"
59 #include "core/layout/style/StyleVisualData.h" 59 #include "core/style/StyleVisualData.h"
60 #include "core/layout/style/StyleWillChangeData.h" 60 #include "core/style/StyleWillChangeData.h"
61 #include "core/layout/style/TransformOrigin.h" 61 #include "core/style/TransformOrigin.h"
62 #include "platform/Length.h" 62 #include "platform/Length.h"
63 #include "platform/LengthBox.h" 63 #include "platform/LengthBox.h"
64 #include "platform/LengthPoint.h" 64 #include "platform/LengthPoint.h"
65 #include "platform/LengthSize.h" 65 #include "platform/LengthSize.h"
66 #include "platform/ThemeTypes.h" 66 #include "platform/ThemeTypes.h"
67 #include "platform/fonts/FontBaseline.h" 67 #include "platform/fonts/FontBaseline.h"
68 #include "platform/fonts/FontDescription.h" 68 #include "platform/fonts/FontDescription.h"
69 #include "platform/geometry/FloatRoundedRect.h" 69 #include "platform/geometry/FloatRoundedRect.h"
70 #include "platform/geometry/LayoutRectOutsets.h" 70 #include "platform/geometry/LayoutRectOutsets.h"
71 #include "platform/graphics/Color.h" 71 #include "platform/graphics/Color.h"
(...skipping 1802 matching lines...) Expand 10 before | Expand all | Expand 10 after
1874 } 1874 }
1875 1875
1876 inline bool ComputedStyle::hasPseudoElementStyle() const 1876 inline bool ComputedStyle::hasPseudoElementStyle() const
1877 { 1877 {
1878 return noninherited_flags.pseudoBits & PSEUDO_ELEMENT_MASK; 1878 return noninherited_flags.pseudoBits & PSEUDO_ELEMENT_MASK;
1879 } 1879 }
1880 1880
1881 } // namespace blink 1881 } // namespace blink
1882 1882
1883 #endif // ComputedStyle_h 1883 #endif // ComputedStyle_h
OLDNEW
« no previous file with comments | « Source/core/style/CollapsedBorderValue.h ('k') | Source/core/style/ComputedStyle.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698