| 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 16 matching lines...) Expand all Loading... |
| 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 28 */ | 28 */ |
| 29 | 29 |
| 30 #ifndef CSSPrimitiveValueMappings_h | 30 #ifndef CSSPrimitiveValueMappings_h |
| 31 #define CSSPrimitiveValueMappings_h | 31 #define CSSPrimitiveValueMappings_h |
| 32 | 32 |
| 33 #include "CSSValueKeywords.h" | 33 #include "CSSValueKeywords.h" |
| 34 #include "core/css/CSSCalculationValue.h" | 34 #include "core/css/CSSCalculationValue.h" |
| 35 #include "core/css/CSSPrimitiveValue.h" | 35 #include "core/css/CSSPrimitiveValue.h" |
| 36 #include "core/css/CSSReflectionDirection.h" | 36 #include "core/css/CSSReflectionDirection.h" |
| 37 #include "core/platform/graphics/FontDescription.h" | |
| 38 #include "core/platform/graphics/FontSmoothingMode.h" | |
| 39 #include "core/platform/ThemeTypes.h" | 37 #include "core/platform/ThemeTypes.h" |
| 40 #include "core/platform/graphics/Path.h" | 38 #include "core/platform/graphics/Path.h" |
| 41 #include "core/platform/graphics/TextRenderingMode.h" | |
| 42 #include "core/rendering/style/LineClampValue.h" | 39 #include "core/rendering/style/LineClampValue.h" |
| 43 #include "core/rendering/style/RenderStyleConstants.h" | 40 #include "core/rendering/style/RenderStyleConstants.h" |
| 44 #include "core/rendering/style/SVGRenderStyleDefs.h" | 41 #include "core/rendering/style/SVGRenderStyleDefs.h" |
| 45 #include "platform/Length.h" | 42 #include "platform/Length.h" |
| 43 #include "platform/fonts/FontDescription.h" |
| 44 #include "platform/fonts/FontSmoothingMode.h" |
| 45 #include "platform/fonts/TextRenderingMode.h" |
| 46 #include "platform/graphics/GraphicsTypes.h" | 46 #include "platform/graphics/GraphicsTypes.h" |
| 47 #include "platform/text/TextDirection.h" | 47 #include "platform/text/TextDirection.h" |
| 48 #include "platform/text/UnicodeBidi.h" | 48 #include "platform/text/UnicodeBidi.h" |
| 49 #include "platform/text/WritingMode.h" | 49 #include "platform/text/WritingMode.h" |
| 50 #include "wtf/MathExtras.h" | 50 #include "wtf/MathExtras.h" |
| 51 | 51 |
| 52 namespace WebCore { | 52 namespace WebCore { |
| 53 | 53 |
| 54 template<> inline CSSPrimitiveValue::CSSPrimitiveValue(short i) | 54 template<> inline CSSPrimitiveValue::CSSPrimitiveValue(short i) |
| 55 : CSSValue(PrimitiveClass) | 55 : CSSValue(PrimitiveClass) |
| (...skipping 4910 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4966 break; | 4966 break; |
| 4967 } | 4967 } |
| 4968 | 4968 |
| 4969 ASSERT_NOT_REACHED(); | 4969 ASSERT_NOT_REACHED(); |
| 4970 return TouchActionDelayNone; | 4970 return TouchActionDelayNone; |
| 4971 } | 4971 } |
| 4972 | 4972 |
| 4973 } | 4973 } |
| 4974 | 4974 |
| 4975 #endif | 4975 #endif |
| OLD | NEW |