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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
51 #include "core/css/CSSReflectValue.h" | 51 #include "core/css/CSSReflectValue.h" |
52 #include "core/css/CSSSVGDocumentValue.h" | 52 #include "core/css/CSSSVGDocumentValue.h" |
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 | 58 |
59 namespace blink { | 59 namespace blink { |
60 | 60 |
61 struct SameSizeAsCSSValue : public RefCountedWillBeGarbageCollectedFinalized<Sam eSizeAsCSSValue> { | 61 struct SameSizeAsCSSValue : public RefCountedWillBeGarbageCollectedFinalized<Sam eSizeAsCSSValue>, public ScriptWrappableBase { |
tkent
2014/07/29 23:00:01
We should add ScriptWrappableBase only if ENABLE(O
| |
62 uint32_t bitfields; | 62 uint32_t bitfields; |
63 }; | 63 }; |
64 | 64 |
65 COMPILE_ASSERT(sizeof(CSSValue) <= sizeof(SameSizeAsCSSValue), CSS_value_should_ stay_small); | 65 COMPILE_ASSERT(sizeof(CSSValue) <= sizeof(SameSizeAsCSSValue), CSS_value_should_ stay_small); |
66 | 66 |
67 class TextCloneCSSValue : public CSSValue { | 67 class TextCloneCSSValue : public CSSValue { |
68 public: | 68 public: |
69 static PassRefPtrWillBeRawPtr<TextCloneCSSValue> create(ClassType classType, const String& text) | 69 static PassRefPtrWillBeRawPtr<TextCloneCSSValue> create(ClassType classType, const String& text) |
70 { | 70 { |
71 return adoptRefWillBeNoop(new TextCloneCSSValue(classType, text)); | 71 return adoptRefWillBeNoop(new TextCloneCSSValue(classType, text)); |
(...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
615 return toCSSTransformValue(this)->cloneForCSSOM(); | 615 return toCSSTransformValue(this)->cloneForCSSOM(); |
616 case ImageSetClass: | 616 case ImageSetClass: |
617 return toCSSImageSetValue(this)->cloneForCSSOM(); | 617 return toCSSImageSetValue(this)->cloneForCSSOM(); |
618 default: | 618 default: |
619 ASSERT(!isSubtypeExposedToCSSOM()); | 619 ASSERT(!isSubtypeExposedToCSSOM()); |
620 return TextCloneCSSValue::create(classType(), cssText()); | 620 return TextCloneCSSValue::create(classType(), cssText()); |
621 } | 621 } |
622 } | 622 } |
623 | 623 |
624 } | 624 } |
OLD | NEW |