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

Side by Side Diff: Source/core/css/BasicShapeFunctions.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/animation/AnimatableLength.cpp ('k') | Source/core/css/CSSBorderImageSliceValue.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 * Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved. 2 * Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above 8 * 1. Redistributions of source code must retain the above
9 * copyright notice, this list of conditions and the following 9 * copyright notice, this list of conditions and the following
10 * disclaimer. 10 * disclaimer.
(...skipping 22 matching lines...) Expand all
33 #include "core/css/CSSBasicShapes.h" 33 #include "core/css/CSSBasicShapes.h"
34 #include "core/css/CSSPrimitiveValueMappings.h" 34 #include "core/css/CSSPrimitiveValueMappings.h"
35 #include "core/css/CSSValuePool.h" 35 #include "core/css/CSSValuePool.h"
36 #include "core/css/Pair.h" 36 #include "core/css/Pair.h"
37 #include "core/css/resolver/StyleResolverState.h" 37 #include "core/css/resolver/StyleResolverState.h"
38 #include "core/rendering/style/BasicShapes.h" 38 #include "core/rendering/style/BasicShapes.h"
39 #include "core/rendering/style/RenderStyle.h" 39 #include "core/rendering/style/RenderStyle.h"
40 40
41 namespace WebCore { 41 namespace WebCore {
42 42
43 static PassRefPtr<CSSPrimitiveValue> valueForCenterCoordinate(CSSValuePool& pool , const RenderStyle& style, const BasicShapeCenterCoordinate& center) 43 static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> valueForCenterCoordinate(CSSVal uePool& pool, const RenderStyle& style, const BasicShapeCenterCoordinate& center )
44 { 44 {
45 CSSValueID keyword = CSSValueInvalid; 45 CSSValueID keyword = CSSValueInvalid;
46 switch (center.keyword()) { 46 switch (center.keyword()) {
47 case BasicShapeCenterCoordinate::None: 47 case BasicShapeCenterCoordinate::None:
48 return pool.createValue(center.length(), style); 48 return pool.createValue(center.length(), style);
49 case BasicShapeCenterCoordinate::Top: 49 case BasicShapeCenterCoordinate::Top:
50 keyword = CSSValueTop; 50 keyword = CSSValueTop;
51 break; 51 break;
52 case BasicShapeCenterCoordinate::Right: 52 case BasicShapeCenterCoordinate::Right:
53 keyword = CSSValueRight; 53 keyword = CSSValueRight;
54 break; 54 break;
55 case BasicShapeCenterCoordinate::Bottom: 55 case BasicShapeCenterCoordinate::Bottom:
56 keyword = CSSValueBottom; 56 keyword = CSSValueBottom;
57 break; 57 break;
58 case BasicShapeCenterCoordinate::Left: 58 case BasicShapeCenterCoordinate::Left:
59 keyword = CSSValueLeft; 59 keyword = CSSValueLeft;
60 break; 60 break;
61 } 61 }
62 62
63 return pool.createValue(Pair::create(pool.createIdentifierValue(keyword), po ol.createValue(center.length(), style), Pair::DropIdenticalValues)); 63 return pool.createValue(Pair::create(pool.createIdentifierValue(keyword), po ol.createValue(center.length(), style), Pair::DropIdenticalValues));
64 } 64 }
65 65
66 static PassRefPtr<CSSPrimitiveValue> basicShapeRadiusToCSSValue(CSSValuePool& po ol, const RenderStyle& style, const BasicShapeRadius& radius) 66 static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> basicShapeRadiusToCSSValue(CSSV aluePool& pool, const RenderStyle& style, const BasicShapeRadius& radius)
67 { 67 {
68 switch (radius.type()) { 68 switch (radius.type()) {
69 case BasicShapeRadius::Value: 69 case BasicShapeRadius::Value:
70 return pool.createValue(radius.value(), style); 70 return pool.createValue(radius.value(), style);
71 case BasicShapeRadius::ClosestSide: 71 case BasicShapeRadius::ClosestSide:
72 return pool.createIdentifierValue(CSSValueClosestSide); 72 return pool.createIdentifierValue(CSSValueClosestSide);
73 case BasicShapeRadius::FarthestSide: 73 case BasicShapeRadius::FarthestSide:
74 return pool.createIdentifierValue(CSSValueFarthestSide); 74 return pool.createIdentifierValue(CSSValueFarthestSide);
75 } 75 }
76 76
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 default: 231 default:
232 ASSERT_NOT_REACHED(); 232 ASSERT_NOT_REACHED();
233 break; 233 break;
234 } 234 }
235 return BasicShapeCenterCoordinate(keyword, convertToLength(state, pair-> second())); 235 return BasicShapeCenterCoordinate(keyword, convertToLength(state, pair-> second()));
236 } 236 }
237 237
238 return BasicShapeCenterCoordinate(convertToLength(state, value)); 238 return BasicShapeCenterCoordinate(convertToLength(state, value));
239 } 239 }
240 240
241 static BasicShapeRadius cssValueToBasicShapeRadius(const StyleResolverState& sta te, PassRefPtr<CSSPrimitiveValue> radius) 241 static BasicShapeRadius cssValueToBasicShapeRadius(const StyleResolverState& sta te, PassRefPtrWillBeRawPtr<CSSPrimitiveValue> radius)
242 { 242 {
243 if (!radius) 243 if (!radius)
244 return BasicShapeRadius(BasicShapeRadius::ClosestSide); 244 return BasicShapeRadius(BasicShapeRadius::ClosestSide);
245 245
246 if (radius->isValueID()) { 246 if (radius->isValueID()) {
247 switch (radius->getValueID()) { 247 switch (radius->getValueID()) {
248 case CSSValueClosestSide: 248 case CSSValueClosestSide:
249 return BasicShapeRadius(BasicShapeRadius::ClosestSide); 249 return BasicShapeRadius(BasicShapeRadius::ClosestSide);
250 case CSSValueFarthestSide: 250 case CSSValueFarthestSide:
251 return BasicShapeRadius(BasicShapeRadius::FarthestSide); 251 return BasicShapeRadius(BasicShapeRadius::FarthestSide);
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
428 p.setY(boxSize.height() - offset); 428 p.setY(boxSize.height() - offset);
429 break; 429 break;
430 default: 430 default:
431 ASSERT_NOT_REACHED(); 431 ASSERT_NOT_REACHED();
432 } 432 }
433 433
434 return p; 434 return p;
435 } 435 }
436 436
437 } 437 }
OLDNEW
« no previous file with comments | « Source/core/animation/AnimatableLength.cpp ('k') | Source/core/css/CSSBorderImageSliceValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698