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

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

Issue 16357011: Remove support for -webkit-color-correction (which we've never supported on (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: resolve merge conflicts, obey brace style changes 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
« 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 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 case CSSPropertyTextIndent: 307 case CSSPropertyTextIndent:
308 case CSSPropertyTextRendering: 308 case CSSPropertyTextRendering:
309 case CSSPropertyTextShadow: 309 case CSSPropertyTextShadow:
310 case CSSPropertyTextTransform: 310 case CSSPropertyTextTransform:
311 case CSSPropertyVariable: 311 case CSSPropertyVariable:
312 case CSSPropertyVisibility: 312 case CSSPropertyVisibility:
313 case CSSPropertyWebkitAspectRatio: 313 case CSSPropertyWebkitAspectRatio:
314 case CSSPropertyWebkitBorderHorizontalSpacing: 314 case CSSPropertyWebkitBorderHorizontalSpacing:
315 case CSSPropertyWebkitBorderVerticalSpacing: 315 case CSSPropertyWebkitBorderVerticalSpacing:
316 case CSSPropertyWebkitBoxDirection: 316 case CSSPropertyWebkitBoxDirection:
317 case CSSPropertyWebkitColorCorrection:
318 case CSSPropertyWebkitFontFeatureSettings: 317 case CSSPropertyWebkitFontFeatureSettings:
319 case CSSPropertyWebkitFontKerning: 318 case CSSPropertyWebkitFontKerning:
320 case CSSPropertyWebkitFontSmoothing: 319 case CSSPropertyWebkitFontSmoothing:
321 case CSSPropertyWebkitFontVariantLigatures: 320 case CSSPropertyWebkitFontVariantLigatures:
322 case CSSPropertyWebkitLocale: 321 case CSSPropertyWebkitLocale:
323 case CSSPropertyWebkitHighlight: 322 case CSSPropertyWebkitHighlight:
324 case CSSPropertyWebkitHyphenateCharacter: 323 case CSSPropertyWebkitHyphenateCharacter:
325 case CSSPropertyWebkitHyphenateLimitAfter: 324 case CSSPropertyWebkitHyphenateLimitAfter:
326 case CSSPropertyWebkitHyphenateLimitBefore: 325 case CSSPropertyWebkitHyphenateLimitBefore:
327 case CSSPropertyWebkitHyphenateLimitLines: 326 case CSSPropertyWebkitHyphenateLimitLines:
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after
675 } 674 }
676 675
677 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const 676 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
678 { 677 {
679 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); 678 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS);
680 info.addMember(m_value, "value"); 679 info.addMember(m_value, "value");
681 info.ignoreMember(m_metadata); 680 info.ignoreMember(m_metadata);
682 } 681 }
683 682
684 } // namespace WebCore 683 } // 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