| 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 446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 457 case CSSPropertyOverflowY: | 457 case CSSPropertyOverflowY: |
| 458 case CSSPropertyPadding: | 458 case CSSPropertyPadding: |
| 459 case CSSPropertyPaddingBottom: | 459 case CSSPropertyPaddingBottom: |
| 460 case CSSPropertyPaddingLeft: | 460 case CSSPropertyPaddingLeft: |
| 461 case CSSPropertyPaddingRight: | 461 case CSSPropertyPaddingRight: |
| 462 case CSSPropertyPaddingTop: | 462 case CSSPropertyPaddingTop: |
| 463 case CSSPropertyPage: | 463 case CSSPropertyPage: |
| 464 case CSSPropertyPageBreakAfter: | 464 case CSSPropertyPageBreakAfter: |
| 465 case CSSPropertyPageBreakBefore: | 465 case CSSPropertyPageBreakBefore: |
| 466 case CSSPropertyPageBreakInside: | 466 case CSSPropertyPageBreakInside: |
| 467 case CSSPropertyPaintOrder: |
| 467 case CSSPropertyPosition: | 468 case CSSPropertyPosition: |
| 468 case CSSPropertyRight: | 469 case CSSPropertyRight: |
| 469 case CSSPropertySize: | 470 case CSSPropertySize: |
| 470 case CSSPropertySrc: | 471 case CSSPropertySrc: |
| 471 case CSSPropertyStopColor: | 472 case CSSPropertyStopColor: |
| 472 case CSSPropertyStopOpacity: | 473 case CSSPropertyStopOpacity: |
| 473 case CSSPropertyTableLayout: | 474 case CSSPropertyTableLayout: |
| 474 case CSSPropertyTextLineThroughColor: | 475 case CSSPropertyTextLineThroughColor: |
| 475 case CSSPropertyTextLineThroughMode: | 476 case CSSPropertyTextLineThroughMode: |
| 476 case CSSPropertyTextLineThroughStyle: | 477 case CSSPropertyTextLineThroughStyle: |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 676 } | 677 } |
| 677 | 678 |
| 678 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const | 679 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const |
| 679 { | 680 { |
| 680 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); | 681 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); |
| 681 info.addMember(m_value, "value"); | 682 info.addMember(m_value, "value"); |
| 682 info.ignoreMember(m_metadata); | 683 info.ignoreMember(m_metadata); |
| 683 } | 684 } |
| 684 | 685 |
| 685 } // namespace WebCore | 686 } // namespace WebCore |
| OLD | NEW |