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

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

Issue 16959008: [CSS Grid Layout] Rename grid-{rows|columns} to grid-definition-{rows|columns} (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added a missing fix for a test in webexposed/ 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
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 562 matching lines...) Expand 10 before | Expand all | Expand 10 after
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: 577 case CSSPropertyGridAfter:
578 case CSSPropertyGridAutoColumns: 578 case CSSPropertyGridAutoColumns:
579 case CSSPropertyGridAutoFlow: 579 case CSSPropertyGridAutoFlow:
580 case CSSPropertyGridAutoRows: 580 case CSSPropertyGridAutoRows:
581 case CSSPropertyGridBefore: 581 case CSSPropertyGridBefore:
582 case CSSPropertyGridColumn: 582 case CSSPropertyGridColumn:
583 case CSSPropertyGridColumns: 583 case CSSPropertyGridDefinitionColumns:
584 case CSSPropertyGridEnd: 584 case CSSPropertyGridEnd:
585 case CSSPropertyGridRow: 585 case CSSPropertyGridRow:
586 case CSSPropertyGridRows: 586 case CSSPropertyGridDefinitionRows:
Julien - ping for review 2013/06/19 22:28:25 Let's keep this list ordered :)
svillar 2013/06/20 07:17:56 Oh sure.
587 case CSSPropertyGridStart: 587 case CSSPropertyGridStart:
588 case CSSPropertyGridArea: 588 case CSSPropertyGridArea:
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:
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698