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

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

Issue 14280004: Revert removal of events (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/css/CSSParser.cpp ('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 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
364 case CSSPropertyStrokeDashoffset: 364 case CSSPropertyStrokeDashoffset:
365 case CSSPropertyStrokeLinecap: 365 case CSSPropertyStrokeLinecap:
366 case CSSPropertyStrokeLinejoin: 366 case CSSPropertyStrokeLinejoin:
367 case CSSPropertyStrokeMiterlimit: 367 case CSSPropertyStrokeMiterlimit:
368 case CSSPropertyStrokeOpacity: 368 case CSSPropertyStrokeOpacity:
369 case CSSPropertyStrokeWidth: 369 case CSSPropertyStrokeWidth:
370 case CSSPropertyShapeRendering: 370 case CSSPropertyShapeRendering:
371 case CSSPropertyTextAnchor: 371 case CSSPropertyTextAnchor:
372 case CSSPropertyWritingMode: 372 case CSSPropertyWritingMode:
373 #endif 373 #endif
374 #if ENABLE(TOUCH_EVENTS)
374 case CSSPropertyWebkitTapHighlightColor: 375 case CSSPropertyWebkitTapHighlightColor:
376 #endif
375 return true; 377 return true;
376 case CSSPropertyDisplay: 378 case CSSPropertyDisplay:
377 case CSSPropertyZoom: 379 case CSSPropertyZoom:
378 case CSSPropertyBackground: 380 case CSSPropertyBackground:
379 case CSSPropertyBackgroundAttachment: 381 case CSSPropertyBackgroundAttachment:
380 #if ENABLE(CSS_COMPOSITING) 382 #if ENABLE(CSS_COMPOSITING)
381 case CSSPropertyBackgroundBlendMode: 383 case CSSPropertyBackgroundBlendMode:
382 #endif 384 #endif
383 case CSSPropertyBackgroundClip: 385 case CSSPropertyBackgroundClip:
384 case CSSPropertyBackgroundColor: 386 case CSSPropertyBackgroundColor:
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
698 } 700 }
699 701
700 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const 702 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
701 { 703 {
702 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); 704 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS);
703 info.addMember(m_value, "value"); 705 info.addMember(m_value, "value");
704 info.ignoreMember(m_metadata); 706 info.ignoreMember(m_metadata);
705 } 707 }
706 708
707 } // namespace WebCore 709 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/css/CSSParser.cpp ('k') | Source/core/css/CSSPropertyNames.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698