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

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

Issue 14488003: Absolutify paths to platform/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: scripts, iwyu 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/StyleResolver.h ('k') | Source/core/css/StyleSheet.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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
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" 52 #include "CachedImage.h"
53 #include "CalculationValue.h"
54 #include "ContentData.h" 53 #include "ContentData.h"
55 #include "ContextFeatures.h" 54 #include "ContextFeatures.h"
56 #include "Counter.h" 55 #include "Counter.h"
57 #include "CounterContent.h" 56 #include "CounterContent.h"
58 #include "CursorList.h" 57 #include "CursorList.h"
59 #include "DocumentStyleSheetCollection.h" 58 #include "DocumentStyleSheetCollection.h"
60 #include "ElementRuleCollector.h" 59 #include "ElementRuleCollector.h"
61 #include "ElementShadow.h" 60 #include "ElementShadow.h"
62 #include "FontFeatureValue.h" 61 #include "FontFeatureValue.h"
63 #include "FontValue.h" 62 #include "FontValue.h"
64 #include "Frame.h" 63 #include "Frame.h"
65 #include "FrameSelection.h" 64 #include "FrameSelection.h"
66 #include "FrameView.h" 65 #include "FrameView.h"
67 #include "HTMLDocument.h" 66 #include "HTMLDocument.h"
68 #include "HTMLIFrameElement.h" 67 #include "HTMLIFrameElement.h"
69 #include "HTMLInputElement.h" 68 #include "HTMLInputElement.h"
70 #include "HTMLNames.h" 69 #include "HTMLNames.h"
71 #include "HTMLOptionElement.h" 70 #include "HTMLOptionElement.h"
72 #include "HTMLProgressElement.h" 71 #include "HTMLProgressElement.h"
73 #include "HTMLStyleElement.h" 72 #include "HTMLStyleElement.h"
74 #include "HTMLTextAreaElement.h" 73 #include "HTMLTextAreaElement.h"
75 #include "InsertionPoint.h" 74 #include "InsertionPoint.h"
76 #include "InspectorInstrumentation.h" 75 #include "InspectorInstrumentation.h"
77 #include "KeyframeList.h" 76 #include "KeyframeList.h"
78 #include "LinkHash.h"
79 #include "MathMLNames.h" 77 #include "MathMLNames.h"
80 #include "MediaList.h" 78 #include "MediaList.h"
81 #include "MediaQueryEvaluator.h" 79 #include "MediaQueryEvaluator.h"
82 #include "NodeRenderStyle.h" 80 #include "NodeRenderStyle.h"
83 #include "NodeRenderingContext.h" 81 #include "NodeRenderingContext.h"
84 #include "Page.h" 82 #include "Page.h"
85 #include "PageRuleCollector.h" 83 #include "PageRuleCollector.h"
86 #include "Pair.h" 84 #include "Pair.h"
87 #include "QuotesData.h" 85 #include "QuotesData.h"
88 #include "Rect.h" 86 #include "Rect.h"
(...skipping 26 matching lines...) Expand all
115 #include "UserAgentStyleSheets.h" 113 #include "UserAgentStyleSheets.h"
116 #include "ViewportStyleResolver.h" 114 #include "ViewportStyleResolver.h"
117 #include "VisitedLinkState.h" 115 #include "VisitedLinkState.h"
118 #include "WebCoreMemoryInstrumentation.h" 116 #include "WebCoreMemoryInstrumentation.h"
119 #include "WebKitCSSKeyframeRule.h" 117 #include "WebKitCSSKeyframeRule.h"
120 #include "WebKitCSSKeyframesRule.h" 118 #include "WebKitCSSKeyframesRule.h"
121 #include "WebKitCSSRegionRule.h" 119 #include "WebKitCSSRegionRule.h"
122 #include "WebKitCSSTransformValue.h" 120 #include "WebKitCSSTransformValue.h"
123 #include "WebKitFontFamilyNames.h" 121 #include "WebKitFontFamilyNames.h"
124 #include "XMLNames.h" 122 #include "XMLNames.h"
123 #include "core/platform/CalculationValue.h"
124 #include "core/platform/LinkHash.h"
125 #include "core/platform/graphics/transforms/Matrix3DTransformOperation.h" 125 #include "core/platform/graphics/transforms/Matrix3DTransformOperation.h"
126 #include "core/platform/graphics/transforms/MatrixTransformOperation.h" 126 #include "core/platform/graphics/transforms/MatrixTransformOperation.h"
127 #include "core/platform/graphics/transforms/PerspectiveTransformOperation.h" 127 #include "core/platform/graphics/transforms/PerspectiveTransformOperation.h"
128 #include "core/platform/graphics/transforms/RotateTransformOperation.h" 128 #include "core/platform/graphics/transforms/RotateTransformOperation.h"
129 #include "core/platform/graphics/transforms/ScaleTransformOperation.h" 129 #include "core/platform/graphics/transforms/ScaleTransformOperation.h"
130 #include "core/platform/graphics/transforms/SkewTransformOperation.h" 130 #include "core/platform/graphics/transforms/SkewTransformOperation.h"
131 #include "core/platform/graphics/transforms/TransformationMatrix.h" 131 #include "core/platform/graphics/transforms/TransformationMatrix.h"
132 #include "core/platform/graphics/transforms/TranslateTransformOperation.h" 132 #include "core/platform/graphics/transforms/TranslateTransformOperation.h"
133 #include "core/platform/text/LocaleToScriptMapping.h" 133 #include "core/platform/text/LocaleToScriptMapping.h"
134 #include <wtf/MemoryInstrumentationHashMap.h> 134 #include <wtf/MemoryInstrumentationHashMap.h>
(...skipping 4305 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/StyleResolver.h ('k') | Source/core/css/StyleSheet.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698