Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(162)

Side by Side Diff: Source/core/css/CSSProperty.cpp

Issue 14178009: Remove CSS_REGIONS compile flag from Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rework patch after https://codereview.chromium.org/14324009 Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 627 matching lines...) Expand 10 before | Expand all | Expand 10 after
638 case CSSPropertyWebkitTransformOriginX: 638 case CSSPropertyWebkitTransformOriginX:
639 case CSSPropertyWebkitTransformOriginY: 639 case CSSPropertyWebkitTransformOriginY:
640 case CSSPropertyWebkitTransformOriginZ: 640 case CSSPropertyWebkitTransformOriginZ:
641 case CSSPropertyWebkitTransformStyle: 641 case CSSPropertyWebkitTransformStyle:
642 case CSSPropertyWebkitTransition: 642 case CSSPropertyWebkitTransition:
643 case CSSPropertyWebkitTransitionDelay: 643 case CSSPropertyWebkitTransitionDelay:
644 case CSSPropertyWebkitTransitionDuration: 644 case CSSPropertyWebkitTransitionDuration:
645 case CSSPropertyWebkitTransitionProperty: 645 case CSSPropertyWebkitTransitionProperty:
646 case CSSPropertyWebkitTransitionTimingFunction: 646 case CSSPropertyWebkitTransitionTimingFunction:
647 case CSSPropertyWebkitUserDrag: 647 case CSSPropertyWebkitUserDrag:
648 #if ENABLE(CSS_REGIONS)
649 case CSSPropertyWebkitFlowInto: 648 case CSSPropertyWebkitFlowInto:
650 case CSSPropertyWebkitFlowFrom: 649 case CSSPropertyWebkitFlowFrom:
651 case CSSPropertyWebkitRegionOverflow: 650 case CSSPropertyWebkitRegionOverflow:
652 case CSSPropertyWebkitRegionBreakAfter: 651 case CSSPropertyWebkitRegionBreakAfter:
653 case CSSPropertyWebkitRegionBreakBefore: 652 case CSSPropertyWebkitRegionBreakBefore:
654 case CSSPropertyWebkitRegionBreakInside: 653 case CSSPropertyWebkitRegionBreakInside:
655 #endif
656 #if ENABLE(CSS_EXCLUSIONS) 654 #if ENABLE(CSS_EXCLUSIONS)
657 case CSSPropertyWebkitWrap: 655 case CSSPropertyWebkitWrap:
658 case CSSPropertyWebkitWrapFlow: 656 case CSSPropertyWebkitWrapFlow:
659 case CSSPropertyWebkitShapeMargin: 657 case CSSPropertyWebkitShapeMargin:
660 case CSSPropertyWebkitShapePadding: 658 case CSSPropertyWebkitShapePadding:
661 case CSSPropertyWebkitShapeInside: 659 case CSSPropertyWebkitShapeInside:
662 case CSSPropertyWebkitShapeOutside: 660 case CSSPropertyWebkitShapeOutside:
663 case CSSPropertyWebkitWrapThrough: 661 case CSSPropertyWebkitWrapThrough:
664 #endif 662 #endif
665 #if ENABLE(SVG) 663 #if ENABLE(SVG)
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
698 } 696 }
699 697
700 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const 698 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
701 { 699 {
702 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); 700 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS);
703 info.addMember(m_value, "value"); 701 info.addMember(m_value, "value");
704 info.ignoreMember(m_metadata); 702 info.ignoreMember(m_metadata);
705 } 703 }
706 704
707 } // namespace WebCore 705 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698