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

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

Issue 1069153002: Remove BisonCSSParser references in comments (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 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
« no previous file with comments | « Source/core/css/CSSPrimitiveValue.h ('k') | Source/core/css/StyleRuleKeyframe.h » ('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, 2007, 2008, 2012 Apple Inc. All rights reserv ed. 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2012 Apple Inc. All rights reserv ed.
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 782 matching lines...) Expand 10 before | Expand all | Expand 10 after
793 return getDoubleValue() * conversionToCanonicalUnitsScaleFactor(type); 793 return getDoubleValue() * conversionToCanonicalUnitsScaleFactor(type);
794 } 794 }
795 795
796 double CSSPrimitiveValue::getDoubleValue() const 796 double CSSPrimitiveValue::getDoubleValue() const
797 { 797 {
798 return m_primitiveUnitType != CSS_CALC ? m_value.num : m_value.calc->doubleV alue(); 798 return m_primitiveUnitType != CSS_CALC ? m_value.num : m_value.calc->doubleV alue();
799 } 799 }
800 800
801 CSSPrimitiveValue::UnitType CSSPrimitiveValue::canonicalUnitTypeForCategory(Unit Category category) 801 CSSPrimitiveValue::UnitType CSSPrimitiveValue::canonicalUnitTypeForCategory(Unit Category category)
802 { 802 {
803 // The canonical unit type is chosen according to the way BisonCSSParser::va lidUnit() chooses the default unit 803 // The canonical unit type is chosen according to the way CSSPropertyParser: :validUnit() chooses the default unit
804 // in each category (based on unitflags). 804 // in each category (based on unitflags).
805 switch (category) { 805 switch (category) {
806 case UNumber: 806 case UNumber:
807 return CSS_NUMBER; 807 return CSS_NUMBER;
808 case ULength: 808 case ULength:
809 return CSS_PX; 809 return CSS_PX;
810 case UPercent: 810 case UPercent:
811 return CSS_UNKNOWN; // Cannot convert between numbers and percent. 811 return CSS_UNKNOWN; // Cannot convert between numbers and percent.
812 case UTime: 812 case UTime:
813 return CSS_MS; 813 return CSS_MS;
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after
1224 visitor->trace(m_value.shape); 1224 visitor->trace(m_value.shape);
1225 break; 1225 break;
1226 default: 1226 default:
1227 break; 1227 break;
1228 } 1228 }
1229 #endif 1229 #endif
1230 CSSValue::traceAfterDispatch(visitor); 1230 CSSValue::traceAfterDispatch(visitor);
1231 } 1231 }
1232 1232
1233 } // namespace blink 1233 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/css/CSSPrimitiveValue.h ('k') | Source/core/css/StyleRuleKeyframe.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698