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 560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
571 case CSSPropertyFlexGrow: | 571 case CSSPropertyFlexGrow: |
572 case CSSPropertyFlexShrink: | 572 case CSSPropertyFlexShrink: |
573 case CSSPropertyFlexWrap: | 573 case CSSPropertyFlexWrap: |
574 case CSSPropertyWebkitFontSizeDelta: | 574 case CSSPropertyWebkitFontSizeDelta: |
575 case CSSPropertyGridAfter: | 575 case CSSPropertyGridAfter: |
576 case CSSPropertyGridAutoColumns: | 576 case CSSPropertyGridAutoColumns: |
577 case CSSPropertyGridAutoFlow: | 577 case CSSPropertyGridAutoFlow: |
578 case CSSPropertyGridAutoRows: | 578 case CSSPropertyGridAutoRows: |
579 case CSSPropertyGridBefore: | 579 case CSSPropertyGridBefore: |
580 case CSSPropertyGridColumn: | 580 case CSSPropertyGridColumn: |
581 case CSSPropertyGridColumns: | 581 case CSSPropertyGridDefinitionColumns: |
| 582 case CSSPropertyGridDefinitionRows: |
582 case CSSPropertyGridEnd: | 583 case CSSPropertyGridEnd: |
583 case CSSPropertyGridRow: | 584 case CSSPropertyGridRow: |
584 case CSSPropertyGridRows: | |
585 case CSSPropertyGridStart: | 585 case CSSPropertyGridStart: |
586 case CSSPropertyGridArea: | 586 case CSSPropertyGridArea: |
587 case CSSPropertyJustifyContent: | 587 case CSSPropertyJustifyContent: |
588 case CSSPropertyWebkitLineClamp: | 588 case CSSPropertyWebkitLineClamp: |
589 case CSSPropertyWebkitLogicalHeight: | 589 case CSSPropertyWebkitLogicalHeight: |
590 case CSSPropertyWebkitLogicalWidth: | 590 case CSSPropertyWebkitLogicalWidth: |
591 case CSSPropertyWebkitMarginAfter: | 591 case CSSPropertyWebkitMarginAfter: |
592 case CSSPropertyWebkitMarginAfterCollapse: | 592 case CSSPropertyWebkitMarginAfterCollapse: |
593 case CSSPropertyWebkitMarginBefore: | 593 case CSSPropertyWebkitMarginBefore: |
594 case CSSPropertyWebkitMarginBeforeCollapse: | 594 case CSSPropertyWebkitMarginBeforeCollapse: |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
677 } | 677 } |
678 | 678 |
679 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const | 679 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const |
680 { | 680 { |
681 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); | 681 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); |
682 info.addMember(m_value, "value"); | 682 info.addMember(m_value, "value"); |
683 info.ignoreMember(m_metadata); | 683 info.ignoreMember(m_metadata); |
684 } | 684 } |
685 | 685 |
686 } // namespace WebCore | 686 } // namespace WebCore |
OLD | NEW |