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

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

Issue 16690004: [CSS Regions] Rename region-overflow to region-fragment (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Patch Created 7 years, 6 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
« no previous file with comments | « Source/core/css/CSSProperties.in ('k') | Source/core/css/CSSPropertyNames.in » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 625 matching lines...) Expand 10 before | Expand all | Expand 10 after
636 case CSSPropertyWebkitTransformOriginZ: 636 case CSSPropertyWebkitTransformOriginZ:
637 case CSSPropertyWebkitTransformStyle: 637 case CSSPropertyWebkitTransformStyle:
638 case CSSPropertyWebkitTransition: 638 case CSSPropertyWebkitTransition:
639 case CSSPropertyWebkitTransitionDelay: 639 case CSSPropertyWebkitTransitionDelay:
640 case CSSPropertyWebkitTransitionDuration: 640 case CSSPropertyWebkitTransitionDuration:
641 case CSSPropertyWebkitTransitionProperty: 641 case CSSPropertyWebkitTransitionProperty:
642 case CSSPropertyWebkitTransitionTimingFunction: 642 case CSSPropertyWebkitTransitionTimingFunction:
643 case CSSPropertyWebkitUserDrag: 643 case CSSPropertyWebkitUserDrag:
644 case CSSPropertyWebkitFlowInto: 644 case CSSPropertyWebkitFlowInto:
645 case CSSPropertyWebkitFlowFrom: 645 case CSSPropertyWebkitFlowFrom:
646 case CSSPropertyWebkitRegionOverflow:
647 case CSSPropertyWebkitRegionBreakAfter: 646 case CSSPropertyWebkitRegionBreakAfter:
648 case CSSPropertyWebkitRegionBreakBefore: 647 case CSSPropertyWebkitRegionBreakBefore:
649 case CSSPropertyWebkitRegionBreakInside: 648 case CSSPropertyWebkitRegionBreakInside:
649 case CSSPropertyWebkitRegionFragment:
650 case CSSPropertyWebkitWrapFlow: 650 case CSSPropertyWebkitWrapFlow:
651 case CSSPropertyWebkitShapeMargin: 651 case CSSPropertyWebkitShapeMargin:
652 case CSSPropertyWebkitShapePadding: 652 case CSSPropertyWebkitShapePadding:
653 case CSSPropertyWebkitShapeInside: 653 case CSSPropertyWebkitShapeInside:
654 case CSSPropertyWebkitShapeOutside: 654 case CSSPropertyWebkitShapeOutside:
655 case CSSPropertyWebkitSvgShadow: 655 case CSSPropertyWebkitSvgShadow:
656 case CSSPropertyWebkitWrapThrough: 656 case CSSPropertyWebkitWrapThrough:
657 case CSSPropertyWebkitAppRegion: 657 case CSSPropertyWebkitAppRegion:
658 case CSSPropertyWidth: 658 case CSSPropertyWidth:
659 #if ENABLE(CSS_DEVICE_ADAPTATION) 659 #if ENABLE(CSS_DEVICE_ADAPTATION)
(...skipping 14 matching lines...) Expand all
674 } 674 }
675 675
676 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const 676 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
677 { 677 {
678 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); 678 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS);
679 info.addMember(m_value, "value"); 679 info.addMember(m_value, "value");
680 info.ignoreMember(m_metadata); 680 info.ignoreMember(m_metadata);
681 } 681 }
682 682
683 } // namespace WebCore 683 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/css/CSSProperties.in ('k') | Source/core/css/CSSPropertyNames.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698