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

Side by Side Diff: Source/core/css/parser/CSSPropertyParser.cpp

Issue 469183002: Move parser-related files in core/css to core/css/parser (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@pp2
Patch Set: Created 6 years, 4 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 | « Source/core/css/parser/CSSPropertyParser.h ('k') | Source/core/css/parser/CSSTokenizer.h » ('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) 2003 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2003 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2005 Allan Sandfeld Jensen (kde@carewolf.com) 3 * Copyright (C) 2005 Allan Sandfeld Jensen (kde@carewolf.com)
4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> 5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com>
6 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> 6 * Copyright (C) 2008 Eric Seidel <eric@webkit.org>
7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
8 * Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved. 8 * Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved.
9 * Copyright (C) 2012 Intel Corporation. All rights reserved. 9 * Copyright (C) 2012 Intel Corporation. All rights reserved.
10 * 10 *
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 #include "core/css/CSSGradientValue.h" 43 #include "core/css/CSSGradientValue.h"
44 #include "core/css/CSSGridLineNamesValue.h" 44 #include "core/css/CSSGridLineNamesValue.h"
45 #include "core/css/CSSGridTemplateAreasValue.h" 45 #include "core/css/CSSGridTemplateAreasValue.h"
46 #include "core/css/CSSImageSetValue.h" 46 #include "core/css/CSSImageSetValue.h"
47 #include "core/css/CSSImageValue.h" 47 #include "core/css/CSSImageValue.h"
48 #include "core/css/CSSInheritedValue.h" 48 #include "core/css/CSSInheritedValue.h"
49 #include "core/css/CSSInitialValue.h" 49 #include "core/css/CSSInitialValue.h"
50 #include "core/css/CSSKeyframeRule.h" 50 #include "core/css/CSSKeyframeRule.h"
51 #include "core/css/CSSKeyframesRule.h" 51 #include "core/css/CSSKeyframesRule.h"
52 #include "core/css/CSSLineBoxContainValue.h" 52 #include "core/css/CSSLineBoxContainValue.h"
53 #include "core/css/CSSParserValues.h"
54 #include "core/css/CSSPrimitiveValue.h" 53 #include "core/css/CSSPrimitiveValue.h"
55 #include "core/css/CSSPropertySourceData.h" 54 #include "core/css/CSSPropertySourceData.h"
56 #include "core/css/CSSReflectValue.h" 55 #include "core/css/CSSReflectValue.h"
57 #include "core/css/CSSSVGDocumentValue.h" 56 #include "core/css/CSSSVGDocumentValue.h"
58 #include "core/css/CSSSelector.h" 57 #include "core/css/CSSSelector.h"
59 #include "core/css/CSSShadowValue.h" 58 #include "core/css/CSSShadowValue.h"
60 #include "core/css/CSSTimingFunctionValue.h" 59 #include "core/css/CSSTimingFunctionValue.h"
61 #include "core/css/CSSTransformValue.h" 60 #include "core/css/CSSTransformValue.h"
62 #include "core/css/CSSUnicodeRangeValue.h" 61 #include "core/css/CSSUnicodeRangeValue.h"
63 #include "core/css/CSSValueList.h" 62 #include "core/css/CSSValueList.h"
64 #include "core/css/CSSValuePool.h" 63 #include "core/css/CSSValuePool.h"
65 #include "core/css/Counter.h" 64 #include "core/css/Counter.h"
66 #include "core/css/HashTools.h" 65 #include "core/css/HashTools.h"
67 #include "core/css/Pair.h" 66 #include "core/css/Pair.h"
68 #include "core/css/Rect.h" 67 #include "core/css/Rect.h"
69 #include "core/css/RuntimeCSSEnabled.h" 68 #include "core/css/RuntimeCSSEnabled.h"
70 #include "core/css/parser/BisonCSSParser.h" 69 #include "core/css/parser/BisonCSSParser.h"
71 #include "core/css/parser/CSSParserIdioms.h" 70 #include "core/css/parser/CSSParserIdioms.h"
71 #include "core/css/parser/CSSParserValues.h"
72 #include "core/frame/UseCounter.h" 72 #include "core/frame/UseCounter.h"
73 #include "core/html/parser/HTMLParserIdioms.h" 73 #include "core/html/parser/HTMLParserIdioms.h"
74 #include "core/inspector/InspectorInstrumentation.h" 74 #include "core/inspector/InspectorInstrumentation.h"
75 #include "core/rendering/RenderTheme.h" 75 #include "core/rendering/RenderTheme.h"
76 #include "platform/FloatConversion.h" 76 #include "platform/FloatConversion.h"
77 #include "platform/RuntimeEnabledFeatures.h" 77 #include "platform/RuntimeEnabledFeatures.h"
78 #include "wtf/BitArray.h" 78 #include "wtf/BitArray.h"
79 #include "wtf/HexNumber.h" 79 #include "wtf/HexNumber.h"
80 #include "wtf/text/StringBuffer.h" 80 #include "wtf/text/StringBuffer.h"
81 #include "wtf/text/StringBuilder.h" 81 #include "wtf/text/StringBuilder.h"
(...skipping 8374 matching lines...) Expand 10 before | Expand all | Expand 10 after
8456 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueFill)); 8456 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueFill));
8457 if (!seenStroke) 8457 if (!seenStroke)
8458 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueStroke) ); 8458 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueStroke) );
8459 if (!seenMarkers) 8459 if (!seenMarkers)
8460 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueMarkers )); 8460 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueMarkers ));
8461 8461
8462 return parsedValues.release(); 8462 return parsedValues.release();
8463 } 8463 }
8464 8464
8465 } // namespace blink 8465 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/css/parser/CSSPropertyParser.h ('k') | Source/core/css/parser/CSSTokenizer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698