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

Side by Side Diff: Source/core/css/StyleResolver.cpp

Issue 14190004: Absolutify paths to loader/*. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: hmm Created 7 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
« no previous file with comments | « Source/core/css/CSSStyleSheet.cpp ('k') | Source/core/css/StyleRuleImport.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) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) 3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com)
4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) 4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com)
5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved. 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved.
6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> 6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> 7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org>
8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. 9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved.
10 * Copyright (C) Research In Motion Limited 2011. All rights reserved. 10 * Copyright (C) Research In Motion Limited 2011. All rights reserved.
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 #include "CSSPrimitiveValueMappings.h" 42 #include "CSSPrimitiveValueMappings.h"
43 #include "CSSPropertyNames.h" 43 #include "CSSPropertyNames.h"
44 #include "CSSReflectValue.h" 44 #include "CSSReflectValue.h"
45 #include "CSSSelector.h" 45 #include "CSSSelector.h"
46 #include "CSSSelectorList.h" 46 #include "CSSSelectorList.h"
47 #include "CSSStyleRule.h" 47 #include "CSSStyleRule.h"
48 #include "CSSSupportsRule.h" 48 #include "CSSSupportsRule.h"
49 #include "CSSTimingFunctionValue.h" 49 #include "CSSTimingFunctionValue.h"
50 #include "CSSValueList.h" 50 #include "CSSValueList.h"
51 #include "CSSVariableValue.h" 51 #include "CSSVariableValue.h"
52 #include "CachedImage.h"
53 #include "ContextFeatures.h" 52 #include "ContextFeatures.h"
54 #include "Counter.h" 53 #include "Counter.h"
55 #include "DocumentStyleSheetCollection.h" 54 #include "DocumentStyleSheetCollection.h"
56 #include "ElementRuleCollector.h" 55 #include "ElementRuleCollector.h"
57 #include "ElementShadow.h" 56 #include "ElementShadow.h"
58 #include "FontFeatureValue.h" 57 #include "FontFeatureValue.h"
59 #include "FontValue.h" 58 #include "FontValue.h"
60 #include "Frame.h" 59 #include "Frame.h"
61 #include "FrameSelection.h" 60 #include "FrameSelection.h"
62 #include "FrameView.h" 61 #include "FrameView.h"
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 #include "UserAgentStyleSheets.h" 97 #include "UserAgentStyleSheets.h"
99 #include "ViewportStyleResolver.h" 98 #include "ViewportStyleResolver.h"
100 #include "VisitedLinkState.h" 99 #include "VisitedLinkState.h"
101 #include "WebCoreMemoryInstrumentation.h" 100 #include "WebCoreMemoryInstrumentation.h"
102 #include "WebKitCSSKeyframeRule.h" 101 #include "WebKitCSSKeyframeRule.h"
103 #include "WebKitCSSKeyframesRule.h" 102 #include "WebKitCSSKeyframesRule.h"
104 #include "WebKitCSSRegionRule.h" 103 #include "WebKitCSSRegionRule.h"
105 #include "WebKitCSSTransformValue.h" 104 #include "WebKitCSSTransformValue.h"
106 #include "WebKitFontFamilyNames.h" 105 #include "WebKitFontFamilyNames.h"
107 #include "XMLNames.h" 106 #include "XMLNames.h"
107 #include "core/loader/cache/CachedImage.h"
108 #include "core/platform/CalculationValue.h" 108 #include "core/platform/CalculationValue.h"
109 #include "core/platform/LinkHash.h" 109 #include "core/platform/LinkHash.h"
110 #include "core/platform/graphics/transforms/Matrix3DTransformOperation.h" 110 #include "core/platform/graphics/transforms/Matrix3DTransformOperation.h"
111 #include "core/platform/graphics/transforms/MatrixTransformOperation.h" 111 #include "core/platform/graphics/transforms/MatrixTransformOperation.h"
112 #include "core/platform/graphics/transforms/PerspectiveTransformOperation.h" 112 #include "core/platform/graphics/transforms/PerspectiveTransformOperation.h"
113 #include "core/platform/graphics/transforms/RotateTransformOperation.h" 113 #include "core/platform/graphics/transforms/RotateTransformOperation.h"
114 #include "core/platform/graphics/transforms/ScaleTransformOperation.h" 114 #include "core/platform/graphics/transforms/ScaleTransformOperation.h"
115 #include "core/platform/graphics/transforms/SkewTransformOperation.h" 115 #include "core/platform/graphics/transforms/SkewTransformOperation.h"
116 #include "core/platform/graphics/transforms/TransformationMatrix.h" 116 #include "core/platform/graphics/transforms/TransformationMatrix.h"
117 #include "core/platform/graphics/transforms/TranslateTransformOperation.h" 117 #include "core/platform/graphics/transforms/TranslateTransformOperation.h"
(...skipping 16 matching lines...) Expand all
134 #include <wtf/MemoryInstrumentationHashMap.h> 134 #include <wtf/MemoryInstrumentationHashMap.h>
135 #include <wtf/MemoryInstrumentationHashSet.h> 135 #include <wtf/MemoryInstrumentationHashSet.h>
136 #include <wtf/MemoryInstrumentationVector.h> 136 #include <wtf/MemoryInstrumentationVector.h>
137 #include <wtf/StdLibExtras.h> 137 #include <wtf/StdLibExtras.h>
138 #include <wtf/Vector.h> 138 #include <wtf/Vector.h>
139 139
140 #include "WebKitCSSFilterValue.h" 140 #include "WebKitCSSFilterValue.h"
141 #include "core/platform/graphics/filters/FilterOperation.h" 141 #include "core/platform/graphics/filters/FilterOperation.h"
142 142
143 #if ENABLE(SVG) 143 #if ENABLE(SVG)
144 #include "CachedSVGDocument.h"
145 #include "CachedSVGDocumentReference.h"
146 #include "SVGDocument.h" 144 #include "SVGDocument.h"
147 #include "SVGElement.h" 145 #include "SVGElement.h"
148 #include "SVGNames.h" 146 #include "SVGNames.h"
149 #include "SVGURIReference.h" 147 #include "SVGURIReference.h"
150 #include "WebKitCSSSVGDocumentValue.h" 148 #include "WebKitCSSSVGDocumentValue.h"
149 #include "core/loader/cache/CachedSVGDocument.h"
150 #include "core/loader/cache/CachedSVGDocumentReference.h"
151 #endif 151 #endif
152 152
153 #include "WebKitCSSMixFunctionValue.h" 153 #include "WebKitCSSMixFunctionValue.h"
154 #include "WebKitCSSShaderValue.h" 154 #include "WebKitCSSShaderValue.h"
155 #include "core/platform/graphics/filters/custom/CustomFilterArrayParameter.h" 155 #include "core/platform/graphics/filters/custom/CustomFilterArrayParameter.h"
156 #include "core/platform/graphics/filters/custom/CustomFilterConstants.h" 156 #include "core/platform/graphics/filters/custom/CustomFilterConstants.h"
157 #include "core/platform/graphics/filters/custom/CustomFilterNumberParameter.h" 157 #include "core/platform/graphics/filters/custom/CustomFilterNumberParameter.h"
158 #include "core/platform/graphics/filters/custom/CustomFilterOperation.h" 158 #include "core/platform/graphics/filters/custom/CustomFilterOperation.h"
159 #include "core/platform/graphics/filters/custom/CustomFilterParameter.h" 159 #include "core/platform/graphics/filters/custom/CustomFilterParameter.h"
160 #include "core/platform/graphics/filters/custom/CustomFilterProgramInfo.h" 160 #include "core/platform/graphics/filters/custom/CustomFilterProgramInfo.h"
(...skipping 4279 matching lines...) Expand 10 before | Expand all | Expand 10 after
4440 info.addMember(m_state, "state"); 4440 info.addMember(m_state, "state");
4441 4441
4442 // FIXME: move this to a place where it would be called only once? 4442 // FIXME: move this to a place where it would be called only once?
4443 info.addMember(CSSDefaultStyleSheets::defaultStyle, "defaultStyle"); 4443 info.addMember(CSSDefaultStyleSheets::defaultStyle, "defaultStyle");
4444 info.addMember(CSSDefaultStyleSheets::defaultQuirksStyle, "defaultQuirksStyl e"); 4444 info.addMember(CSSDefaultStyleSheets::defaultQuirksStyle, "defaultQuirksStyl e");
4445 info.addMember(CSSDefaultStyleSheets::defaultPrintStyle,"defaultPrintStyle") ; 4445 info.addMember(CSSDefaultStyleSheets::defaultPrintStyle,"defaultPrintStyle") ;
4446 info.addMember(CSSDefaultStyleSheets::defaultViewSourceStyle, "defaultViewSo urceStyle"); 4446 info.addMember(CSSDefaultStyleSheets::defaultViewSourceStyle, "defaultViewSo urceStyle");
4447 } 4447 }
4448 4448
4449 } // namespace WebCore 4449 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/css/CSSStyleSheet.cpp ('k') | Source/core/css/StyleRuleImport.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698