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

Side by Side Diff: third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.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) 2004 Zack Rusin <zack@kde.org> 2 * Copyright (C) 2004 Zack Rusin <zack@kde.org>
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> 4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> 5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com>
6 * Copyright (C) 2011 Sencha, Inc. All rights reserved. 6 * Copyright (C) 2011 Sencha, Inc. All rights reserved.
7 * Copyright (C) 2015 Google Inc. All rights reserved. 7 * Copyright (C) 2015 Google Inc. All rights reserved.
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public 10 * modify it under the terms of the GNU Lesser General Public
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 #include "core/css/CSSValuePool.h" 49 #include "core/css/CSSValuePool.h"
50 #include "core/layout/LayoutBlock.h" 50 #include "core/layout/LayoutBlock.h"
51 #include "core/layout/LayoutBox.h" 51 #include "core/layout/LayoutBox.h"
52 #include "core/layout/LayoutGrid.h" 52 #include "core/layout/LayoutGrid.h"
53 #include "core/layout/LayoutObject.h" 53 #include "core/layout/LayoutObject.h"
54 #include "core/style/ComputedStyle.h" 54 #include "core/style/ComputedStyle.h"
55 #include "core/style/ContentData.h" 55 #include "core/style/ContentData.h"
56 #include "core/style/PathStyleMotionPath.h" 56 #include "core/style/PathStyleMotionPath.h"
57 #include "core/style/QuotesData.h" 57 #include "core/style/QuotesData.h"
58 #include "core/style/ShadowList.h" 58 #include "core/style/ShadowList.h"
59 #include "core/style/StyleVariableData.h"
59 #include "core/svg/SVGPathUtilities.h" 60 #include "core/svg/SVGPathUtilities.h"
60 #include "platform/LengthFunctions.h" 61 #include "platform/LengthFunctions.h"
61 62
62 namespace blink { 63 namespace blink {
63 64
64 inline static bool isFlexOrGrid(const ComputedStyle* style) 65 inline static bool isFlexOrGrid(const ComputedStyle* style)
65 { 66 {
66 return style && style->isDisplayFlexibleOrGridBox(); 67 return style && style->isDisplayFlexibleOrGridBox();
67 } 68 }
68 69
(...skipping 2665 matching lines...) Expand 10 before | Expand all | Expand 10 after
2734 case CSSPropertyAll: 2735 case CSSPropertyAll:
2735 return nullptr; 2736 return nullptr;
2736 default: 2737 default:
2737 break; 2738 break;
2738 } 2739 }
2739 ASSERT_NOT_REACHED(); 2740 ASSERT_NOT_REACHED();
2740 return nullptr; 2741 return nullptr;
2741 } 2742 }
2742 2743
2743 } 2744 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698