OLD | NEW |
1 /** | 1 /** |
2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) | 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) |
3 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. | 3 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. |
4 * | 4 * |
5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
9 * | 9 * |
10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
(...skipping 627 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
638 case CSSPropertyWebkitTransformOriginX: | 638 case CSSPropertyWebkitTransformOriginX: |
639 case CSSPropertyWebkitTransformOriginY: | 639 case CSSPropertyWebkitTransformOriginY: |
640 case CSSPropertyWebkitTransformOriginZ: | 640 case CSSPropertyWebkitTransformOriginZ: |
641 case CSSPropertyWebkitTransformStyle: | 641 case CSSPropertyWebkitTransformStyle: |
642 case CSSPropertyWebkitTransition: | 642 case CSSPropertyWebkitTransition: |
643 case CSSPropertyWebkitTransitionDelay: | 643 case CSSPropertyWebkitTransitionDelay: |
644 case CSSPropertyWebkitTransitionDuration: | 644 case CSSPropertyWebkitTransitionDuration: |
645 case CSSPropertyWebkitTransitionProperty: | 645 case CSSPropertyWebkitTransitionProperty: |
646 case CSSPropertyWebkitTransitionTimingFunction: | 646 case CSSPropertyWebkitTransitionTimingFunction: |
647 case CSSPropertyWebkitUserDrag: | 647 case CSSPropertyWebkitUserDrag: |
648 #if ENABLE(CSS_REGIONS) | |
649 case CSSPropertyWebkitFlowInto: | 648 case CSSPropertyWebkitFlowInto: |
650 case CSSPropertyWebkitFlowFrom: | 649 case CSSPropertyWebkitFlowFrom: |
651 case CSSPropertyWebkitRegionOverflow: | 650 case CSSPropertyWebkitRegionOverflow: |
652 case CSSPropertyWebkitRegionBreakAfter: | 651 case CSSPropertyWebkitRegionBreakAfter: |
653 case CSSPropertyWebkitRegionBreakBefore: | 652 case CSSPropertyWebkitRegionBreakBefore: |
654 case CSSPropertyWebkitRegionBreakInside: | 653 case CSSPropertyWebkitRegionBreakInside: |
655 #endif | |
656 #if ENABLE(CSS_EXCLUSIONS) | 654 #if ENABLE(CSS_EXCLUSIONS) |
657 case CSSPropertyWebkitWrap: | 655 case CSSPropertyWebkitWrap: |
658 case CSSPropertyWebkitWrapFlow: | 656 case CSSPropertyWebkitWrapFlow: |
659 case CSSPropertyWebkitShapeMargin: | 657 case CSSPropertyWebkitShapeMargin: |
660 case CSSPropertyWebkitShapePadding: | 658 case CSSPropertyWebkitShapePadding: |
661 case CSSPropertyWebkitShapeInside: | 659 case CSSPropertyWebkitShapeInside: |
662 case CSSPropertyWebkitShapeOutside: | 660 case CSSPropertyWebkitShapeOutside: |
663 case CSSPropertyWebkitWrapThrough: | 661 case CSSPropertyWebkitWrapThrough: |
664 #endif | 662 #endif |
665 #if ENABLE(SVG) | 663 #if ENABLE(SVG) |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
698 } | 696 } |
699 | 697 |
700 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const | 698 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const |
701 { | 699 { |
702 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); | 700 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); |
703 info.addMember(m_value, "value"); | 701 info.addMember(m_value, "value"); |
704 info.ignoreMember(m_metadata); | 702 info.ignoreMember(m_metadata); |
705 } | 703 } |
706 | 704 |
707 } // namespace WebCore | 705 } // namespace WebCore |
OLD | NEW |