| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 #include "core/css/CSSShadowValue.h" | 58 #include "core/css/CSSShadowValue.h" |
| 59 #include "core/css/CSSStringValue.h" | 59 #include "core/css/CSSStringValue.h" |
| 60 #include "core/css/CSSTimingFunctionValue.h" | 60 #include "core/css/CSSTimingFunctionValue.h" |
| 61 #include "core/css/CSSURIValue.h" | 61 #include "core/css/CSSURIValue.h" |
| 62 #include "core/css/CSSUnicodeRangeValue.h" | 62 #include "core/css/CSSUnicodeRangeValue.h" |
| 63 #include "core/css/CSSUnsetValue.h" | 63 #include "core/css/CSSUnsetValue.h" |
| 64 #include "core/css/CSSValueList.h" | 64 #include "core/css/CSSValueList.h" |
| 65 #include "core/css/CSSValuePair.h" | 65 #include "core/css/CSSValuePair.h" |
| 66 #include "core/css/CSSVariableReferenceValue.h" | 66 #include "core/css/CSSVariableReferenceValue.h" |
| 67 #include "platform/Length.h" | 67 #include "platform/Length.h" |
| 68 #include "wtf/SizeAssertions.h" | 68 #include "platform/wtf/SizeAssertions.h" |
| 69 | 69 |
| 70 namespace blink { | 70 namespace blink { |
| 71 | 71 |
| 72 using namespace cssvalue; | 72 using namespace cssvalue; |
| 73 | 73 |
| 74 struct SameSizeAsCSSValue | 74 struct SameSizeAsCSSValue |
| 75 : public GarbageCollectedFinalized<SameSizeAsCSSValue> { | 75 : public GarbageCollectedFinalized<SameSizeAsCSSValue> { |
| 76 uint32_t bitfields; | 76 uint32_t bitfields; |
| 77 }; | 77 }; |
| 78 ASSERT_SIZE(CSSValue, SameSizeAsCSSValue); | 78 ASSERT_SIZE(CSSValue, SameSizeAsCSSValue); |
| (...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 608 ToCSSCustomPropertyDeclaration(this)->TraceAfterDispatch(visitor); | 608 ToCSSCustomPropertyDeclaration(this)->TraceAfterDispatch(visitor); |
| 609 return; | 609 return; |
| 610 case kPendingSubstitutionValueClass: | 610 case kPendingSubstitutionValueClass: |
| 611 ToCSSPendingSubstitutionValue(this)->TraceAfterDispatch(visitor); | 611 ToCSSPendingSubstitutionValue(this)->TraceAfterDispatch(visitor); |
| 612 return; | 612 return; |
| 613 } | 613 } |
| 614 NOTREACHED(); | 614 NOTREACHED(); |
| 615 } | 615 } |
| 616 | 616 |
| 617 } // namespace blink | 617 } // namespace blink |
| OLD | NEW |