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 530 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
541 case CSSPropertyWebkitBoxAlign: | 541 case CSSPropertyWebkitBoxAlign: |
542 case CSSPropertyWebkitBoxDecorationBreak: | 542 case CSSPropertyWebkitBoxDecorationBreak: |
543 case CSSPropertyWebkitBoxFlex: | 543 case CSSPropertyWebkitBoxFlex: |
544 case CSSPropertyWebkitBoxFlexGroup: | 544 case CSSPropertyWebkitBoxFlexGroup: |
545 case CSSPropertyWebkitBoxLines: | 545 case CSSPropertyWebkitBoxLines: |
546 case CSSPropertyWebkitBoxOrdinalGroup: | 546 case CSSPropertyWebkitBoxOrdinalGroup: |
547 case CSSPropertyWebkitBoxOrient: | 547 case CSSPropertyWebkitBoxOrient: |
548 case CSSPropertyWebkitBoxPack: | 548 case CSSPropertyWebkitBoxPack: |
549 case CSSPropertyWebkitBoxReflect: | 549 case CSSPropertyWebkitBoxReflect: |
550 case CSSPropertyWebkitBoxShadow: | 550 case CSSPropertyWebkitBoxShadow: |
| 551 #if ENABLE(CSS_CALLBACKS) |
| 552 case CSSPropertyInternalCallback: |
| 553 #endif |
551 case CSSPropertyWebkitClipPath: | 554 case CSSPropertyWebkitClipPath: |
552 case CSSPropertyWebkitColumnAxis: | 555 case CSSPropertyWebkitColumnAxis: |
553 case CSSPropertyWebkitColumnBreakAfter: | 556 case CSSPropertyWebkitColumnBreakAfter: |
554 case CSSPropertyWebkitColumnBreakBefore: | 557 case CSSPropertyWebkitColumnBreakBefore: |
555 case CSSPropertyWebkitColumnBreakInside: | 558 case CSSPropertyWebkitColumnBreakInside: |
556 case CSSPropertyWebkitColumnCount: | 559 case CSSPropertyWebkitColumnCount: |
557 case CSSPropertyWebkitColumnGap: | 560 case CSSPropertyWebkitColumnGap: |
558 case CSSPropertyWebkitColumnProgression: | 561 case CSSPropertyWebkitColumnProgression: |
559 case CSSPropertyWebkitColumnRule: | 562 case CSSPropertyWebkitColumnRule: |
560 case CSSPropertyWebkitColumnRuleColor: | 563 case CSSPropertyWebkitColumnRuleColor: |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
677 } | 680 } |
678 | 681 |
679 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const | 682 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const |
680 { | 683 { |
681 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); | 684 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); |
682 info.addMember(m_value, "value"); | 685 info.addMember(m_value, "value"); |
683 info.ignoreMember(m_metadata); | 686 info.ignoreMember(m_metadata); |
684 } | 687 } |
685 | 688 |
686 } // namespace WebCore | 689 } // namespace WebCore |
OLD | NEW |