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 562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
573 case CSSPropertyWebkitFlexGrow: | 573 case CSSPropertyWebkitFlexGrow: |
574 case CSSPropertyWebkitFlexShrink: | 574 case CSSPropertyWebkitFlexShrink: |
575 case CSSPropertyWebkitFlexWrap: | 575 case CSSPropertyWebkitFlexWrap: |
576 case CSSPropertyWebkitFontSizeDelta: | 576 case CSSPropertyWebkitFontSizeDelta: |
577 case CSSPropertyGridAfter: | 577 case CSSPropertyGridAfter: |
578 case CSSPropertyGridAutoColumns: | 578 case CSSPropertyGridAutoColumns: |
579 case CSSPropertyGridAutoFlow: | 579 case CSSPropertyGridAutoFlow: |
580 case CSSPropertyGridAutoRows: | 580 case CSSPropertyGridAutoRows: |
581 case CSSPropertyGridBefore: | 581 case CSSPropertyGridBefore: |
582 case CSSPropertyGridColumn: | 582 case CSSPropertyGridColumn: |
583 case CSSPropertyGridColumns: | 583 case CSSPropertyGridDefinitionColumns: |
584 case CSSPropertyGridEnd: | 584 case CSSPropertyGridEnd: |
585 case CSSPropertyGridRow: | 585 case CSSPropertyGridRow: |
586 case CSSPropertyGridRows: | 586 case CSSPropertyGridDefinitionRows: |
Julien - ping for review
2013/06/19 22:28:25
Let's keep this list ordered :)
svillar
2013/06/20 07:17:56
Oh sure.
| |
587 case CSSPropertyGridStart: | 587 case CSSPropertyGridStart: |
588 case CSSPropertyGridArea: | 588 case CSSPropertyGridArea: |
589 case CSSPropertyWebkitJustifyContent: | 589 case CSSPropertyWebkitJustifyContent: |
590 case CSSPropertyWebkitLineClamp: | 590 case CSSPropertyWebkitLineClamp: |
591 case CSSPropertyWebkitLogicalHeight: | 591 case CSSPropertyWebkitLogicalHeight: |
592 case CSSPropertyWebkitLogicalWidth: | 592 case CSSPropertyWebkitLogicalWidth: |
593 case CSSPropertyWebkitMarginAfter: | 593 case CSSPropertyWebkitMarginAfter: |
594 case CSSPropertyWebkitMarginAfterCollapse: | 594 case CSSPropertyWebkitMarginAfterCollapse: |
595 case CSSPropertyWebkitMarginBefore: | 595 case CSSPropertyWebkitMarginBefore: |
596 case CSSPropertyWebkitMarginBeforeCollapse: | 596 case CSSPropertyWebkitMarginBeforeCollapse: |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
679 } | 679 } |
680 | 680 |
681 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const | 681 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const |
682 { | 682 { |
683 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); | 683 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); |
684 info.addMember(m_value, "value"); | 684 info.addMember(m_value, "value"); |
685 info.ignoreMember(m_metadata); | 685 info.ignoreMember(m_metadata); |
686 } | 686 } |
687 | 687 |
688 } // namespace WebCore | 688 } // namespace WebCore |
OLD | NEW |