| 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 676 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 687 case CSSPropertyStopColor: | 687 case CSSPropertyStopColor: |
| 688 case CSSPropertyStopOpacity: | 688 case CSSPropertyStopOpacity: |
| 689 case CSSPropertyColorProfile: | 689 case CSSPropertyColorProfile: |
| 690 case CSSPropertyAlignmentBaseline: | 690 case CSSPropertyAlignmentBaseline: |
| 691 case CSSPropertyBaselineShift: | 691 case CSSPropertyBaselineShift: |
| 692 case CSSPropertyDominantBaseline: | 692 case CSSPropertyDominantBaseline: |
| 693 case CSSPropertyVectorEffect: | 693 case CSSPropertyVectorEffect: |
| 694 case CSSPropertyBufferedRendering: | 694 case CSSPropertyBufferedRendering: |
| 695 case CSSPropertyWebkitSvgShadow: | 695 case CSSPropertyWebkitSvgShadow: |
| 696 #endif | 696 #endif |
| 697 #if ENABLE(DASHBOARD_SUPPORT) | |
| 698 case CSSPropertyWebkitDashboardRegion: | |
| 699 #endif | |
| 700 #if ENABLE(DRAGGABLE_REGION) | 697 #if ENABLE(DRAGGABLE_REGION) |
| 701 case CSSPropertyWebkitAppRegion: | 698 case CSSPropertyWebkitAppRegion: |
| 702 #endif | 699 #endif |
| 703 #if ENABLE(CSS_DEVICE_ADAPTATION) | 700 #if ENABLE(CSS_DEVICE_ADAPTATION) |
| 704 case CSSPropertyMaxZoom: | 701 case CSSPropertyMaxZoom: |
| 705 case CSSPropertyMinZoom: | 702 case CSSPropertyMinZoom: |
| 706 case CSSPropertyOrientation: | 703 case CSSPropertyOrientation: |
| 707 case CSSPropertyUserZoom: | 704 case CSSPropertyUserZoom: |
| 708 #endif | 705 #endif |
| 709 return false; | 706 return false; |
| 710 case CSSPropertyInvalid: | 707 case CSSPropertyInvalid: |
| 711 ASSERT_NOT_REACHED(); | 708 ASSERT_NOT_REACHED(); |
| 712 return false; | 709 return false; |
| 713 } | 710 } |
| 714 ASSERT_NOT_REACHED(); | 711 ASSERT_NOT_REACHED(); |
| 715 return false; | 712 return false; |
| 716 } | 713 } |
| 717 | 714 |
| 718 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const | 715 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const |
| 719 { | 716 { |
| 720 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); | 717 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); |
| 721 info.addMember(m_value, "value"); | 718 info.addMember(m_value, "value"); |
| 722 info.ignoreMember(m_metadata); | 719 info.ignoreMember(m_metadata); |
| 723 } | 720 } |
| 724 | 721 |
| 725 } // namespace WebCore | 722 } // namespace WebCore |
| OLD | NEW |