| 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 554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 565 case CSSPropertyWebkitColumns: | 565 case CSSPropertyWebkitColumns: |
| 566 case CSSPropertyWebkitFilter: | 566 case CSSPropertyWebkitFilter: |
| 567 case CSSPropertyFlex: | 567 case CSSPropertyFlex: |
| 568 case CSSPropertyFlexBasis: | 568 case CSSPropertyFlexBasis: |
| 569 case CSSPropertyFlexDirection: | 569 case CSSPropertyFlexDirection: |
| 570 case CSSPropertyFlexFlow: | 570 case CSSPropertyFlexFlow: |
| 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 CSSPropertyGridArea: |
| 576 case CSSPropertyGridAutoColumns: | 576 case CSSPropertyGridAutoColumns: |
| 577 case CSSPropertyGridAutoFlow: | 577 case CSSPropertyGridAutoFlow: |
| 578 case CSSPropertyGridAutoRows: | 578 case CSSPropertyGridAutoRows: |
| 579 case CSSPropertyGridBefore: | |
| 580 case CSSPropertyGridColumn: | 579 case CSSPropertyGridColumn: |
| 580 case CSSPropertyGridColumnEnd: |
| 581 case CSSPropertyGridColumnStart: |
| 581 case CSSPropertyGridDefinitionColumns: | 582 case CSSPropertyGridDefinitionColumns: |
| 582 case CSSPropertyGridDefinitionRows: | 583 case CSSPropertyGridDefinitionRows: |
| 583 case CSSPropertyGridEnd: | |
| 584 case CSSPropertyGridRow: | 584 case CSSPropertyGridRow: |
| 585 case CSSPropertyGridStart: | 585 case CSSPropertyGridRowEnd: |
| 586 case CSSPropertyGridArea: | 586 case CSSPropertyGridRowStart: |
| 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: |
| 595 case CSSPropertyWebkitMarginBottomCollapse: | 595 case CSSPropertyWebkitMarginBottomCollapse: |
| 596 case CSSPropertyWebkitMarginCollapse: | 596 case CSSPropertyWebkitMarginCollapse: |
| (...skipping 80 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 |