Chromium Code Reviews| 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 556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 567 case CSSPropertyWebkitColumns: | 567 case CSSPropertyWebkitColumns: |
| 568 case CSSPropertyWebkitFilter: | 568 case CSSPropertyWebkitFilter: |
| 569 case CSSPropertyWebkitFlex: | 569 case CSSPropertyWebkitFlex: |
| 570 case CSSPropertyWebkitFlexBasis: | 570 case CSSPropertyWebkitFlexBasis: |
| 571 case CSSPropertyWebkitFlexDirection: | 571 case CSSPropertyWebkitFlexDirection: |
| 572 case CSSPropertyWebkitFlexFlow: | 572 case CSSPropertyWebkitFlexFlow: |
| 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: | |
| 578 case CSSPropertyGridAutoColumns: | 577 case CSSPropertyGridAutoColumns: |
| 579 case CSSPropertyGridAutoFlow: | 578 case CSSPropertyGridAutoFlow: |
| 580 case CSSPropertyGridAutoRows: | 579 case CSSPropertyGridAutoRows: |
| 581 case CSSPropertyGridBefore: | |
| 582 case CSSPropertyGridColumn: | 580 case CSSPropertyGridColumn: |
| 581 case CSSPropertyGridColumnEnd: | |
| 582 case CSSPropertyGridColumnStart: | |
| 583 case CSSPropertyGridColumns: | 583 case CSSPropertyGridColumns: |
| 584 case CSSPropertyGridEnd: | |
| 585 case CSSPropertyGridRow: | 584 case CSSPropertyGridRow: |
| 585 case CSSPropertyGridRowEnd: | |
| 586 case CSSPropertyGridRowStart: | |
| 586 case CSSPropertyGridRows: | 587 case CSSPropertyGridRows: |
| 587 case CSSPropertyGridStart: | |
| 588 case CSSPropertyGridArea: | 588 case CSSPropertyGridArea: |
|
Julien - ping for review
2013/06/25 17:14:37
Another nit: We could also sort the grid propertie
| |
| 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: |
| 597 case CSSPropertyWebkitMarginBottomCollapse: | 597 case CSSPropertyWebkitMarginBottomCollapse: |
| 598 case CSSPropertyWebkitMarginCollapse: | 598 case CSSPropertyWebkitMarginCollapse: |
| (...skipping 80 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 |