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: third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp

Issue 1883983003: Remove CSSParserValues (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "core/css/parser/CSSPropertyParser.h" 5 #include "core/css/parser/CSSPropertyParser.h"
6 6
7 #include "core/StylePropertyShorthand.h" 7 #include "core/StylePropertyShorthand.h"
8 #include "core/css/CSSBasicShapeValues.h" 8 #include "core/css/CSSBasicShapeValues.h"
9 #include "core/css/CSSBorderImage.h" 9 #include "core/css/CSSBorderImage.h"
10 #include "core/css/CSSContentDistributionValue.h" 10 #include "core/css/CSSContentDistributionValue.h"
(...skipping 19 matching lines...) Expand all
30 #include "core/css/CSSStringValue.h" 30 #include "core/css/CSSStringValue.h"
31 #include "core/css/CSSTimingFunctionValue.h" 31 #include "core/css/CSSTimingFunctionValue.h"
32 #include "core/css/CSSURIValue.h" 32 #include "core/css/CSSURIValue.h"
33 #include "core/css/CSSUnicodeRangeValue.h" 33 #include "core/css/CSSUnicodeRangeValue.h"
34 #include "core/css/CSSValuePair.h" 34 #include "core/css/CSSValuePair.h"
35 #include "core/css/CSSValuePool.h" 35 #include "core/css/CSSValuePool.h"
36 #include "core/css/CSSVariableReferenceValue.h" 36 #include "core/css/CSSVariableReferenceValue.h"
37 #include "core/css/FontFace.h" 37 #include "core/css/FontFace.h"
38 #include "core/css/HashTools.h" 38 #include "core/css/HashTools.h"
39 #include "core/css/parser/CSSParserFastPaths.h" 39 #include "core/css/parser/CSSParserFastPaths.h"
40 #include "core/css/parser/CSSParserValues.h"
41 #include "core/css/parser/CSSPropertyParserHelpers.h" 40 #include "core/css/parser/CSSPropertyParserHelpers.h"
42 #include "core/css/parser/CSSVariableParser.h" 41 #include "core/css/parser/CSSVariableParser.h"
43 #include "core/frame/UseCounter.h" 42 #include "core/frame/UseCounter.h"
44 #include "core/layout/LayoutTheme.h" 43 #include "core/layout/LayoutTheme.h"
45 #include "core/svg/SVGPathUtilities.h" 44 #include "core/svg/SVGPathUtilities.h"
46 #include "wtf/text/StringBuilder.h" 45 #include "wtf/text/StringBuilder.h"
47 46
48 namespace blink { 47 namespace blink {
49 48
50 using namespace CSSPropertyParserHelpers; 49 using namespace CSSPropertyParserHelpers;
(...skipping 4924 matching lines...) Expand 10 before | Expand all | Expand 10 after
4975 return consumeGridTemplateShorthand(important); 4974 return consumeGridTemplateShorthand(important);
4976 case CSSPropertyGrid: 4975 case CSSPropertyGrid:
4977 return consumeGridShorthand(important); 4976 return consumeGridShorthand(important);
4978 default: 4977 default:
4979 m_currentShorthand = oldShorthand; 4978 m_currentShorthand = oldShorthand;
4980 return false; 4979 return false;
4981 } 4980 }
4982 } 4981 }
4983 4982
4984 } // namespace blink 4983 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698