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

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

Issue 17450016: Implementation of CSS3 nav-up/down/left/right properties from CSS3 UI. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Implementation of CSS3 nav-up/down/left/right properties from CSS3 UI 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 433 matching lines...) Expand 10 before | Expand all | Expand 10 after
444 case CSSPropertyMarginLeft: 444 case CSSPropertyMarginLeft:
445 case CSSPropertyMarginRight: 445 case CSSPropertyMarginRight:
446 case CSSPropertyMarginTop: 446 case CSSPropertyMarginTop:
447 case CSSPropertyMask: 447 case CSSPropertyMask:
448 case CSSPropertyMaskType: 448 case CSSPropertyMaskType:
449 case CSSPropertyMaxHeight: 449 case CSSPropertyMaxHeight:
450 case CSSPropertyMaxWidth: 450 case CSSPropertyMaxWidth:
451 case CSSPropertyMinHeight: 451 case CSSPropertyMinHeight:
452 case CSSPropertyMinWidth: 452 case CSSPropertyMinWidth:
453 case CSSPropertyMixBlendMode: 453 case CSSPropertyMixBlendMode:
454 case CSSPropertyNavDown:
455 case CSSPropertyNavLeft:
456 case CSSPropertyNavRight:
457 case CSSPropertyNavUp:
454 case CSSPropertyOpacity: 458 case CSSPropertyOpacity:
455 case CSSPropertyOutline: 459 case CSSPropertyOutline:
456 case CSSPropertyOutlineColor: 460 case CSSPropertyOutlineColor:
457 case CSSPropertyOutlineOffset: 461 case CSSPropertyOutlineOffset:
458 case CSSPropertyOutlineStyle: 462 case CSSPropertyOutlineStyle:
459 case CSSPropertyOutlineWidth: 463 case CSSPropertyOutlineWidth:
460 case CSSPropertyOverflow: 464 case CSSPropertyOverflow:
461 case CSSPropertyOverflowWrap: 465 case CSSPropertyOverflowWrap:
462 case CSSPropertyOverflowX: 466 case CSSPropertyOverflowX:
463 case CSSPropertyOverflowY: 467 case CSSPropertyOverflowY:
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
679 } 683 }
680 684
681 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const 685 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
682 { 686 {
683 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); 687 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS);
684 info.addMember(m_value, "value"); 688 info.addMember(m_value, "value");
685 info.ignoreMember(m_metadata); 689 info.ignoreMember(m_metadata);
686 } 690 }
687 691
688 } // namespace WebCore 692 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698