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

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

Issue 15748002: Initial support for experimental touch-action CSS feature (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove unnecessary CSSParserContext change Created 7 years, 7 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 467 matching lines...) Expand 10 before | Expand all | Expand 10 after
478 case CSSPropertyTextOverflow: 478 case CSSPropertyTextOverflow:
479 case CSSPropertyTextOverlineColor: 479 case CSSPropertyTextOverlineColor:
480 case CSSPropertyTextOverlineMode: 480 case CSSPropertyTextOverlineMode:
481 case CSSPropertyTextOverlineStyle: 481 case CSSPropertyTextOverlineStyle:
482 case CSSPropertyTextOverlineWidth: 482 case CSSPropertyTextOverlineWidth:
483 case CSSPropertyTextUnderlineColor: 483 case CSSPropertyTextUnderlineColor:
484 case CSSPropertyTextUnderlineMode: 484 case CSSPropertyTextUnderlineMode:
485 case CSSPropertyTextUnderlineStyle: 485 case CSSPropertyTextUnderlineStyle:
486 case CSSPropertyTextUnderlineWidth: 486 case CSSPropertyTextUnderlineWidth:
487 case CSSPropertyTop: 487 case CSSPropertyTop:
488 case CSSPropertyTouchAction:
488 case CSSPropertyTransition: 489 case CSSPropertyTransition:
489 case CSSPropertyTransitionDelay: 490 case CSSPropertyTransitionDelay:
490 case CSSPropertyTransitionDuration: 491 case CSSPropertyTransitionDuration:
491 case CSSPropertyTransitionProperty: 492 case CSSPropertyTransitionProperty:
492 case CSSPropertyTransitionTimingFunction: 493 case CSSPropertyTransitionTimingFunction:
493 case CSSPropertyUnicodeBidi: 494 case CSSPropertyUnicodeBidi:
494 case CSSPropertyUnicodeRange: 495 case CSSPropertyUnicodeRange:
495 case CSSPropertyVectorEffect: 496 case CSSPropertyVectorEffect:
496 case CSSPropertyVerticalAlign: 497 case CSSPropertyVerticalAlign:
497 case CSSPropertyWebkitAlignContent: 498 case CSSPropertyWebkitAlignContent:
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
676 } 677 }
677 678
678 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const 679 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
679 { 680 {
680 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); 681 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS);
681 info.addMember(m_value, "value"); 682 info.addMember(m_value, "value");
682 info.ignoreMember(m_metadata); 683 info.ignoreMember(m_metadata);
683 } 684 }
684 685
685 } // namespace WebCore 686 } // 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