| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007 Alexey Proskuryakov <ap@nypop.com>. | 2 * Copyright (C) 2007 Alexey Proskuryakov <ap@nypop.com>. |
| 3 * Copyright (C) 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. | 3 * Copyright (C) 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. |
| 4 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) | 4 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) |
| 5 * Copyright (C) 2009 Jeff Schiller <codedread@gmail.com> | 5 * Copyright (C) 2009 Jeff Schiller <codedread@gmail.com> |
| 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. | 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. |
| 7 * | 7 * |
| 8 * Redistribution and use in source and binary forms, with or without | 8 * Redistribution and use in source and binary forms, with or without |
| 9 * modification, are permitted provided that the following conditions | 9 * modification, are permitted provided that the following conditions |
| 10 * are met: | 10 * are met: |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 #include "sky/engine/core/css/CSSPrimitiveValue.h" | 35 #include "sky/engine/core/css/CSSPrimitiveValue.h" |
| 36 #include "sky/engine/core/css/CSSPrimitiveValueMappings.h" | 36 #include "sky/engine/core/css/CSSPrimitiveValueMappings.h" |
| 37 #include "sky/engine/core/css/CSSToLengthConversionData.h" | 37 #include "sky/engine/core/css/CSSToLengthConversionData.h" |
| 38 #include "sky/engine/core/rendering/style/RenderStyleConstants.h" | 38 #include "sky/engine/core/rendering/style/RenderStyleConstants.h" |
| 39 #include "sky/engine/platform/Length.h" | 39 #include "sky/engine/platform/Length.h" |
| 40 #include "sky/engine/platform/fonts/FontDescription.h" | 40 #include "sky/engine/platform/fonts/FontDescription.h" |
| 41 #include "sky/engine/platform/fonts/FontSmoothingMode.h" | 41 #include "sky/engine/platform/fonts/FontSmoothingMode.h" |
| 42 #include "sky/engine/platform/fonts/TextRenderingMode.h" | 42 #include "sky/engine/platform/fonts/TextRenderingMode.h" |
| 43 #include "sky/engine/platform/graphics/GraphicsTypes.h" | 43 #include "sky/engine/platform/graphics/GraphicsTypes.h" |
| 44 #include "sky/engine/platform/graphics/Path.h" | 44 #include "sky/engine/platform/graphics/Path.h" |
| 45 #include "sky/engine/platform/scroll/ScrollableArea.h" | 45 #include "sky/engine/platform/scroll/ScrollTypes.h" |
| 46 #include "sky/engine/platform/text/TextDirection.h" | 46 #include "sky/engine/platform/text/TextDirection.h" |
| 47 #include "sky/engine/platform/text/UnicodeBidi.h" | 47 #include "sky/engine/platform/text/UnicodeBidi.h" |
| 48 #include "sky/engine/wtf/MathExtras.h" | 48 #include "sky/engine/wtf/MathExtras.h" |
| 49 | 49 |
| 50 namespace blink { | 50 namespace blink { |
| 51 | 51 |
| 52 template<> inline CSSPrimitiveValue::CSSPrimitiveValue(short i) | 52 template<> inline CSSPrimitiveValue::CSSPrimitiveValue(short i) |
| 53 : CSSValue(PrimitiveClass) | 53 : CSSValue(PrimitiveClass) |
| 54 { | 54 { |
| 55 m_primitiveUnitType = CSS_NUMBER; | 55 m_primitiveUnitType = CSS_NUMBER; |
| (...skipping 3414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3470 default: | 3470 default: |
| 3471 break; | 3471 break; |
| 3472 } | 3472 } |
| 3473 ASSERT_NOT_REACHED(); | 3473 ASSERT_NOT_REACHED(); |
| 3474 return ScrollBehaviorInstant; | 3474 return ScrollBehaviorInstant; |
| 3475 } | 3475 } |
| 3476 | 3476 |
| 3477 } | 3477 } |
| 3478 | 3478 |
| 3479 #endif // SKY_ENGINE_CORE_CSS_CSSPRIMITIVEVALUEMAPPINGS_H_ | 3479 #endif // SKY_ENGINE_CORE_CSS_CSSPRIMITIVEVALUEMAPPINGS_H_ |
| OLD | NEW |