OLD | NEW |
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 Loading... |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |