OLD | NEW |
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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 #include "core/css/CSSShadowValue.h" | 53 #include "core/css/CSSShadowValue.h" |
54 #include "core/css/CSSTimingFunctionValue.h" | 54 #include "core/css/CSSTimingFunctionValue.h" |
55 #include "core/css/CSSTransformValue.h" | 55 #include "core/css/CSSTransformValue.h" |
56 #include "core/css/CSSUnicodeRangeValue.h" | 56 #include "core/css/CSSUnicodeRangeValue.h" |
57 #include "core/css/CSSValueList.h" | 57 #include "core/css/CSSValueList.h" |
58 #include "core/svg/SVGColor.h" | 58 #include "core/svg/SVGColor.h" |
59 #include "core/svg/SVGPaint.h" | 59 #include "core/svg/SVGPaint.h" |
60 | 60 |
61 namespace WebCore { | 61 namespace WebCore { |
62 | 62 |
63 DEFINE_GC_INFO(CSSValue); | |
64 | |
65 struct SameSizeAsCSSValue : public RefCountedWillBeRefCountedGarbageCollected<Sa
meSizeAsCSSValue> { | 63 struct SameSizeAsCSSValue : public RefCountedWillBeRefCountedGarbageCollected<Sa
meSizeAsCSSValue> { |
66 uint32_t bitfields; | 64 uint32_t bitfields; |
67 }; | 65 }; |
68 | 66 |
69 COMPILE_ASSERT(sizeof(CSSValue) <= sizeof(SameSizeAsCSSValue), CSS_value_should_
stay_small); | 67 COMPILE_ASSERT(sizeof(CSSValue) <= sizeof(SameSizeAsCSSValue), CSS_value_should_
stay_small); |
70 | 68 |
71 class TextCloneCSSValue : public CSSValue { | 69 class TextCloneCSSValue : public CSSValue { |
72 public: | 70 public: |
73 static PassRefPtrWillBeRawPtr<TextCloneCSSValue> create(ClassType classType,
const String& text) | 71 static PassRefPtrWillBeRawPtr<TextCloneCSSValue> create(ClassType classType,
const String& text) |
74 { | 72 { |
(...skipping 574 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
649 return toSVGColor(this)->cloneForCSSOM(); | 647 return toSVGColor(this)->cloneForCSSOM(); |
650 case SVGPaintClass: | 648 case SVGPaintClass: |
651 return toSVGPaint(this)->cloneForCSSOM(); | 649 return toSVGPaint(this)->cloneForCSSOM(); |
652 default: | 650 default: |
653 ASSERT(!isSubtypeExposedToCSSOM()); | 651 ASSERT(!isSubtypeExposedToCSSOM()); |
654 return TextCloneCSSValue::create(classType(), cssText()); | 652 return TextCloneCSSValue::create(classType(), cssText()); |
655 } | 653 } |
656 } | 654 } |
657 | 655 |
658 } | 656 } |
OLD | NEW |