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

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

Issue 148523016: Move most of the [Pass]RefPtr's of CSSPrimitiveValue to our transition types. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Sync to latest change Created 6 years, 10 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/CSSPrimitiveValue.h ('k') | Source/core/css/CSSReflectValue.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 1086 matching lines...) Expand 10 before | Expand all | Expand 10 after
1097 text = formatNumber(m_value.num, "vmax"); 1097 text = formatNumber(m_value.num, "vmax");
1098 break; 1098 break;
1099 } 1099 }
1100 1100
1101 ASSERT(!cssTextCache().contains(this)); 1101 ASSERT(!cssTextCache().contains(this));
1102 cssTextCache().set(this, text); 1102 cssTextCache().set(this, text);
1103 m_hasCachedCSSText = true; 1103 m_hasCachedCSSText = true;
1104 return text; 1104 return text;
1105 } 1105 }
1106 1106
1107 PassRefPtr<CSSPrimitiveValue> CSSPrimitiveValue::cloneForCSSOM() const 1107 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> CSSPrimitiveValue::cloneForCSSOM() con st
1108 { 1108 {
1109 RefPtr<CSSPrimitiveValue> result; 1109 RefPtrWillBeRawPtr<CSSPrimitiveValue> result;
1110 1110
1111 switch (m_primitiveUnitType) { 1111 switch (m_primitiveUnitType) {
1112 case CSS_STRING: 1112 case CSS_STRING:
1113 case CSS_URI: 1113 case CSS_URI:
1114 case CSS_ATTR: 1114 case CSS_ATTR:
1115 case CSS_COUNTER_NAME: 1115 case CSS_COUNTER_NAME:
1116 result = CSSPrimitiveValue::create(m_value.string, static_cast<UnitTypes >(m_primitiveUnitType)); 1116 result = CSSPrimitiveValue::create(m_value.string, static_cast<UnitTypes >(m_primitiveUnitType));
1117 break; 1117 break;
1118 case CSS_COUNTER: 1118 case CSS_COUNTER:
1119 result = CSSPrimitiveValue::create(m_value.counter->cloneForCSSOM()); 1119 result = CSSPrimitiveValue::create(m_value.counter->cloneForCSSOM());
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
1265 case CSS_CALC: 1265 case CSS_CALC:
1266 visitor->trace(m_value.calc); 1266 visitor->trace(m_value.calc);
1267 break; 1267 break;
1268 default: 1268 default:
1269 break; 1269 break;
1270 } 1270 }
1271 CSSValue::traceAfterDispatch(visitor); 1271 CSSValue::traceAfterDispatch(visitor);
1272 } 1272 }
1273 1273
1274 } // namespace WebCore 1274 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/css/CSSPrimitiveValue.h ('k') | Source/core/css/CSSReflectValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698