| 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 661 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 672 case CSSPropertyFloodOpacity: | 672 case CSSPropertyFloodOpacity: |
| 673 case CSSPropertyLightingColor: | 673 case CSSPropertyLightingColor: |
| 674 case CSSPropertyStopColor: | 674 case CSSPropertyStopColor: |
| 675 case CSSPropertyStopOpacity: | 675 case CSSPropertyStopOpacity: |
| 676 case CSSPropertyColorProfile: | 676 case CSSPropertyColorProfile: |
| 677 case CSSPropertyAlignmentBaseline: | 677 case CSSPropertyAlignmentBaseline: |
| 678 case CSSPropertyBaselineShift: | 678 case CSSPropertyBaselineShift: |
| 679 case CSSPropertyDominantBaseline: | 679 case CSSPropertyDominantBaseline: |
| 680 case CSSPropertyVectorEffect: | 680 case CSSPropertyVectorEffect: |
| 681 case CSSPropertyBufferedRendering: | 681 case CSSPropertyBufferedRendering: |
| 682 case CSSPropertyPaintOrder: |
| 682 case CSSPropertyWebkitSvgShadow: | 683 case CSSPropertyWebkitSvgShadow: |
| 683 #endif | 684 #endif |
| 684 case CSSPropertyWebkitAppRegion: | 685 case CSSPropertyWebkitAppRegion: |
| 685 #if ENABLE(CSS_DEVICE_ADAPTATION) | 686 #if ENABLE(CSS_DEVICE_ADAPTATION) |
| 686 case CSSPropertyMaxZoom: | 687 case CSSPropertyMaxZoom: |
| 687 case CSSPropertyMinZoom: | 688 case CSSPropertyMinZoom: |
| 688 case CSSPropertyOrientation: | 689 case CSSPropertyOrientation: |
| 689 case CSSPropertyUserZoom: | 690 case CSSPropertyUserZoom: |
| 690 #endif | 691 #endif |
| 691 return false; | 692 return false; |
| 692 case CSSPropertyInvalid: | 693 case CSSPropertyInvalid: |
| 693 ASSERT_NOT_REACHED(); | 694 ASSERT_NOT_REACHED(); |
| 694 return false; | 695 return false; |
| 695 } | 696 } |
| 696 ASSERT_NOT_REACHED(); | 697 ASSERT_NOT_REACHED(); |
| 697 return false; | 698 return false; |
| 698 } | 699 } |
| 699 | 700 |
| 700 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const | 701 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const |
| 701 { | 702 { |
| 702 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); | 703 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); |
| 703 info.addMember(m_value, "value"); | 704 info.addMember(m_value, "value"); |
| 704 info.ignoreMember(m_metadata); | 705 info.ignoreMember(m_metadata); |
| 705 } | 706 } |
| 706 | 707 |
| 707 } // namespace WebCore | 708 } // namespace WebCore |
| OLD | NEW |