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

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

Issue 14519003: Absolutify paths to dom/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix testrunner 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/CSSValue.h ('k') | Source/core/css/CSSValueList.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) 2011 Andreas Kling (kling@webkit.org) 2 * Copyright (C) 2011 Andreas Kling (kling@webkit.org)
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 11 matching lines...) Expand all
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 * 24 *
25 */ 25 */
26 26
27 #include "config.h" 27 #include "config.h"
28 #include "core/css/CSSValue.h" 28 #include "core/css/CSSValue.h"
29 29
30 #include "SVGColor.h" 30 #include "SVGColor.h"
31 #include "SVGPaint.h" 31 #include "SVGPaint.h"
32 #include "WebCoreMemoryInstrumentation.h"
33 #include "core/css/CSSAspectRatioValue.h" 32 #include "core/css/CSSAspectRatioValue.h"
34 #include "core/css/CSSBorderImageSliceValue.h" 33 #include "core/css/CSSBorderImageSliceValue.h"
35 #include "core/css/CSSCalculationValue.h" 34 #include "core/css/CSSCalculationValue.h"
36 #include "core/css/CSSCanvasValue.h" 35 #include "core/css/CSSCanvasValue.h"
37 #include "core/css/CSSCrossfadeValue.h" 36 #include "core/css/CSSCrossfadeValue.h"
38 #include "core/css/CSSCursorImageValue.h" 37 #include "core/css/CSSCursorImageValue.h"
39 #include "core/css/CSSFontFaceSrcValue.h" 38 #include "core/css/CSSFontFaceSrcValue.h"
40 #include "core/css/CSSFunctionValue.h" 39 #include "core/css/CSSFunctionValue.h"
41 #include "core/css/CSSGradientValue.h" 40 #include "core/css/CSSGradientValue.h"
42 #include "core/css/CSSImageGeneratorValue.h" 41 #include "core/css/CSSImageGeneratorValue.h"
43 #include "core/css/CSSImageSetValue.h" 42 #include "core/css/CSSImageSetValue.h"
44 #include "core/css/CSSImageValue.h" 43 #include "core/css/CSSImageValue.h"
45 #include "core/css/CSSInheritedValue.h" 44 #include "core/css/CSSInheritedValue.h"
46 #include "core/css/CSSInitialValue.h" 45 #include "core/css/CSSInitialValue.h"
47 #include "core/css/CSSLineBoxContainValue.h" 46 #include "core/css/CSSLineBoxContainValue.h"
48 #include "core/css/CSSPrimitiveValue.h" 47 #include "core/css/CSSPrimitiveValue.h"
49 #include "core/css/CSSReflectValue.h" 48 #include "core/css/CSSReflectValue.h"
50 #include "core/css/CSSTimingFunctionValue.h" 49 #include "core/css/CSSTimingFunctionValue.h"
51 #include "core/css/CSSUnicodeRangeValue.h" 50 #include "core/css/CSSUnicodeRangeValue.h"
52 #include "core/css/CSSValueList.h" 51 #include "core/css/CSSValueList.h"
53 #include "core/css/CSSVariableValue.h" 52 #include "core/css/CSSVariableValue.h"
54 #include "core/css/FontFeatureValue.h" 53 #include "core/css/FontFeatureValue.h"
55 #include "core/css/FontValue.h" 54 #include "core/css/FontValue.h"
56 #include "core/css/ShadowValue.h" 55 #include "core/css/ShadowValue.h"
57 #include "core/css/WebKitCSSArrayFunctionValue.h" 56 #include "core/css/WebKitCSSArrayFunctionValue.h"
58 #include "core/css/WebKitCSSFilterValue.h" 57 #include "core/css/WebKitCSSFilterValue.h"
59 #include "core/css/WebKitCSSMixFunctionValue.h" 58 #include "core/css/WebKitCSSMixFunctionValue.h"
60 #include "core/css/WebKitCSSShaderValue.h" 59 #include "core/css/WebKitCSSShaderValue.h"
61 #include "core/css/WebKitCSSTransformValue.h" 60 #include "core/css/WebKitCSSTransformValue.h"
61 #include "core/dom/WebCoreMemoryInstrumentation.h"
62 62
63 #if ENABLE(SVG) 63 #if ENABLE(SVG)
64 #include "core/css/WebKitCSSSVGDocumentValue.h" 64 #include "core/css/WebKitCSSSVGDocumentValue.h"
65 #endif 65 #endif
66 66
67 namespace WebCore { 67 namespace WebCore {
68 68
69 struct SameSizeAsCSSValue : public RefCounted<SameSizeAsCSSValue> { 69 struct SameSizeAsCSSValue : public RefCounted<SameSizeAsCSSValue> {
70 uint32_t bitfields; 70 uint32_t bitfields;
71 }; 71 };
(...skipping 544 matching lines...) Expand 10 before | Expand all | Expand 10 after
616 case SVGPaintClass: 616 case SVGPaintClass:
617 return static_cast<const SVGPaint*>(this)->cloneForCSSOM(); 617 return static_cast<const SVGPaint*>(this)->cloneForCSSOM();
618 #endif 618 #endif
619 default: 619 default:
620 ASSERT(!isSubtypeExposedToCSSOM()); 620 ASSERT(!isSubtypeExposedToCSSOM());
621 return TextCloneCSSValue::create(classType(), cssText()); 621 return TextCloneCSSValue::create(classType(), cssText());
622 } 622 }
623 } 623 }
624 624
625 } 625 }
OLDNEW
« no previous file with comments | « Source/core/css/CSSValue.h ('k') | Source/core/css/CSSValueList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698