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

Side by Side Diff: Source/core/css/resolver/StyleBuilderCustom.cpp

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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
4 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) 4 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com)
5 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) 5 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com)
6 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved. 6 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. 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. (http://www.t orchmobile.com/) 9 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
10 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. 10 * Copyright (c) 2011, Code Aurora Forum. All rights reserved.
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 #include "core/css/Pair.h" 57 #include "core/css/Pair.h"
58 #include "core/css/StylePropertySet.h" 58 #include "core/css/StylePropertySet.h"
59 #include "core/css/StyleRule.h" 59 #include "core/css/StyleRule.h"
60 #include "core/css/resolver/ElementStyleResources.h" 60 #include "core/css/resolver/ElementStyleResources.h"
61 #include "core/css/resolver/FilterOperationResolver.h" 61 #include "core/css/resolver/FilterOperationResolver.h"
62 #include "core/css/resolver/FontBuilder.h" 62 #include "core/css/resolver/FontBuilder.h"
63 #include "core/css/resolver/StyleBuilder.h" 63 #include "core/css/resolver/StyleBuilder.h"
64 #include "core/css/resolver/TransformBuilder.h" 64 #include "core/css/resolver/TransformBuilder.h"
65 #include "core/frame/LocalFrame.h" 65 #include "core/frame/LocalFrame.h"
66 #include "core/frame/Settings.h" 66 #include "core/frame/Settings.h"
67 #include "core/layout/style/CounterContent.h" 67 #include "core/style/CounterContent.h"
68 #include "core/layout/style/ComputedStyle.h" 68 #include "core/style/ComputedStyle.h"
69 #include "core/layout/style/ComputedStyleConstants.h" 69 #include "core/style/ComputedStyleConstants.h"
70 #include "core/layout/style/PathStyleMotionPath.h" 70 #include "core/style/PathStyleMotionPath.h"
71 #include "core/layout/style/QuotesData.h" 71 #include "core/style/QuotesData.h"
72 #include "core/layout/style/SVGComputedStyle.h" 72 #include "core/style/SVGComputedStyle.h"
73 #include "core/layout/style/StyleGeneratedImage.h" 73 #include "core/style/StyleGeneratedImage.h"
74 #include "platform/fonts/FontDescription.h" 74 #include "platform/fonts/FontDescription.h"
75 #include "wtf/MathExtras.h" 75 #include "wtf/MathExtras.h"
76 #include "wtf/StdLibExtras.h" 76 #include "wtf/StdLibExtras.h"
77 #include "wtf/Vector.h" 77 #include "wtf/Vector.h"
78 78
79 namespace blink { 79 namespace blink {
80 80
81 namespace { 81 namespace {
82 82
83 static inline bool isValidVisitedLinkProperty(CSSPropertyID id) 83 static inline bool isValidVisitedLinkProperty(CSSPropertyID id)
(...skipping 811 matching lines...) Expand 10 before | Expand all | Expand 10 after
895 return; 895 return;
896 case CSSValueSuper: 896 case CSSValueSuper:
897 svgStyle.setBaselineShift(BS_SUPER); 897 svgStyle.setBaselineShift(BS_SUPER);
898 return; 898 return;
899 default: 899 default:
900 ASSERT_NOT_REACHED(); 900 ASSERT_NOT_REACHED();
901 } 901 }
902 } 902 }
903 903
904 } // namespace blink 904 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/css/resolver/StyleBuilderConverter.h ('k') | Source/core/css/resolver/StyleResolver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698