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

Side by Side Diff: Source/core/css/parser/BisonCSSParser-in.cpp

Issue 338173003: Reduce SVG dependencies (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase against ToT Created 6 years, 6 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 | Source/core/css/parser/CSSPropertyParser.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) 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 #include "core/css/CSSImageSetValue.h" 45 #include "core/css/CSSImageSetValue.h"
46 #include "core/css/CSSImageValue.h" 46 #include "core/css/CSSImageValue.h"
47 #include "core/css/CSSInheritedValue.h" 47 #include "core/css/CSSInheritedValue.h"
48 #include "core/css/CSSInitialValue.h" 48 #include "core/css/CSSInitialValue.h"
49 #include "core/css/CSSKeyframeRule.h" 49 #include "core/css/CSSKeyframeRule.h"
50 #include "core/css/CSSKeyframesRule.h" 50 #include "core/css/CSSKeyframesRule.h"
51 #include "core/css/CSSLineBoxContainValue.h" 51 #include "core/css/CSSLineBoxContainValue.h"
52 #include "core/css/CSSPrimitiveValue.h" 52 #include "core/css/CSSPrimitiveValue.h"
53 #include "core/css/CSSPropertySourceData.h" 53 #include "core/css/CSSPropertySourceData.h"
54 #include "core/css/CSSReflectValue.h" 54 #include "core/css/CSSReflectValue.h"
55 #include "core/css/CSSSVGDocumentValue.h"
56 #include "core/css/CSSSelector.h" 55 #include "core/css/CSSSelector.h"
57 #include "core/css/CSSShadowValue.h" 56 #include "core/css/CSSShadowValue.h"
58 #include "core/css/CSSStyleSheet.h" 57 #include "core/css/CSSStyleSheet.h"
59 #include "core/css/CSSTimingFunctionValue.h" 58 #include "core/css/CSSTimingFunctionValue.h"
60 #include "core/css/CSSTransformValue.h" 59 #include "core/css/CSSTransformValue.h"
61 #include "core/css/CSSUnicodeRangeValue.h" 60 #include "core/css/CSSUnicodeRangeValue.h"
62 #include "core/css/CSSValueList.h" 61 #include "core/css/CSSValueList.h"
63 #include "core/css/CSSValuePool.h" 62 #include "core/css/CSSValuePool.h"
64 #include "core/css/Counter.h" 63 #include "core/css/Counter.h"
65 #include "core/css/HashTools.h" 64 #include "core/css/HashTools.h"
66 #include "core/css/MediaList.h" 65 #include "core/css/MediaList.h"
67 #include "core/css/MediaQueryExp.h" 66 #include "core/css/MediaQueryExp.h"
68 #include "core/css/Pair.h" 67 #include "core/css/Pair.h"
69 #include "core/css/Rect.h" 68 #include "core/css/Rect.h"
70 #include "core/css/StylePropertySet.h" 69 #include "core/css/StylePropertySet.h"
71 #include "core/css/StyleRule.h" 70 #include "core/css/StyleRule.h"
72 #include "core/css/StyleRuleImport.h" 71 #include "core/css/StyleRuleImport.h"
73 #include "core/css/StyleSheetContents.h" 72 #include "core/css/StyleSheetContents.h"
74 #include "core/css/parser/CSSParserIdioms.h" 73 #include "core/css/parser/CSSParserIdioms.h"
75 #include "core/dom/Document.h" 74 #include "core/dom/Document.h"
76 #include "core/frame/FrameConsole.h" 75 #include "core/frame/FrameConsole.h"
77 #include "core/frame/FrameHost.h" 76 #include "core/frame/FrameHost.h"
78 #include "core/frame/Settings.h" 77 #include "core/frame/Settings.h"
79 #include "core/html/parser/HTMLParserIdioms.h" 78 #include "core/html/parser/HTMLParserIdioms.h"
80 #include "core/inspector/InspectorInstrumentation.h" 79 #include "core/inspector/InspectorInstrumentation.h"
81 #include "core/rendering/RenderTheme.h" 80 #include "core/rendering/RenderTheme.h"
82 #include "core/svg/SVGParserUtilities.h"
83 #include "platform/FloatConversion.h" 81 #include "platform/FloatConversion.h"
84 #include "platform/RuntimeEnabledFeatures.h" 82 #include "platform/RuntimeEnabledFeatures.h"
85 #include "wtf/BitArray.h" 83 #include "wtf/BitArray.h"
86 #include "wtf/HexNumber.h" 84 #include "wtf/HexNumber.h"
87 #include "wtf/text/StringBuffer.h" 85 #include "wtf/text/StringBuffer.h"
88 #include "wtf/text/StringBuilder.h" 86 #include "wtf/text/StringBuilder.h"
89 #include "wtf/text/StringImpl.h" 87 #include "wtf/text/StringImpl.h"
90 #include "wtf/text/TextEncoding.h" 88 #include "wtf/text/TextEncoding.h"
91 #include <limits.h> 89 #include <limits.h>
92 90
(...skipping 1982 matching lines...) Expand 10 before | Expand all | Expand 10 after
2075 rule->setProperties(createStylePropertySet()); 2073 rule->setProperties(createStylePropertySet());
2076 clearProperties(); 2074 clearProperties();
2077 2075
2078 StyleRuleViewport* result = rule.get(); 2076 StyleRuleViewport* result = rule.get();
2079 m_parsedRules.append(rule.release()); 2077 m_parsedRules.append(rule.release());
2080 2078
2081 return result; 2079 return result;
2082 } 2080 }
2083 2081
2084 } 2082 }
OLDNEW
« no previous file with comments | « no previous file | Source/core/css/parser/CSSPropertyParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698