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

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

Issue 14296003: Remove TOUCH_EVENTS and TOUCH_EVENT_TRACKING compile-time flags. (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
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 356 matching lines...) Expand 10 before | Expand all | Expand 10 after
367 case CSSPropertyStrokeDashoffset: 367 case CSSPropertyStrokeDashoffset:
368 case CSSPropertyStrokeLinecap: 368 case CSSPropertyStrokeLinecap:
369 case CSSPropertyStrokeLinejoin: 369 case CSSPropertyStrokeLinejoin:
370 case CSSPropertyStrokeMiterlimit: 370 case CSSPropertyStrokeMiterlimit:
371 case CSSPropertyStrokeOpacity: 371 case CSSPropertyStrokeOpacity:
372 case CSSPropertyStrokeWidth: 372 case CSSPropertyStrokeWidth:
373 case CSSPropertyShapeRendering: 373 case CSSPropertyShapeRendering:
374 case CSSPropertyTextAnchor: 374 case CSSPropertyTextAnchor:
375 case CSSPropertyWritingMode: 375 case CSSPropertyWritingMode:
376 #endif 376 #endif
377 #if ENABLE(TOUCH_EVENTS)
378 case CSSPropertyWebkitTapHighlightColor: 377 case CSSPropertyWebkitTapHighlightColor:
379 #endif
380 return true; 378 return true;
381 case CSSPropertyDisplay: 379 case CSSPropertyDisplay:
382 case CSSPropertyZoom: 380 case CSSPropertyZoom:
383 case CSSPropertyBackground: 381 case CSSPropertyBackground:
384 case CSSPropertyBackgroundAttachment: 382 case CSSPropertyBackgroundAttachment:
385 case CSSPropertyBackgroundClip: 383 case CSSPropertyBackgroundClip:
386 case CSSPropertyBackgroundColor: 384 case CSSPropertyBackgroundColor:
387 case CSSPropertyBackgroundImage: 385 case CSSPropertyBackgroundImage:
388 case CSSPropertyBackgroundOrigin: 386 case CSSPropertyBackgroundOrigin:
389 case CSSPropertyBackgroundPosition: 387 case CSSPropertyBackgroundPosition:
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
703 } 701 }
704 702
705 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const 703 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
706 { 704 {
707 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); 705 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS);
708 info.addMember(m_value, "value"); 706 info.addMember(m_value, "value");
709 info.ignoreMember(m_metadata); 707 info.ignoreMember(m_metadata);
710 } 708 }
711 709
712 } // namespace WebCore 710 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698