| 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 29 matching lines...) Expand all Loading... |
| 40 #include "core/platform/Length.h" | 40 #include "core/platform/Length.h" |
| 41 #include "core/platform/ThemeTypes.h" | 41 #include "core/platform/ThemeTypes.h" |
| 42 #include "core/platform/graphics/Path.h" | 42 #include "core/platform/graphics/Path.h" |
| 43 #include "core/platform/graphics/TextRenderingMode.h" | 43 #include "core/platform/graphics/TextRenderingMode.h" |
| 44 #include "core/platform/text/TextDirection.h" | 44 #include "core/platform/text/TextDirection.h" |
| 45 #include "core/platform/text/UnicodeBidi.h" | 45 #include "core/platform/text/UnicodeBidi.h" |
| 46 #include "core/platform/text/WritingMode.h" | 46 #include "core/platform/text/WritingMode.h" |
| 47 #include "core/rendering/style/LineClampValue.h" | 47 #include "core/rendering/style/LineClampValue.h" |
| 48 #include "core/rendering/style/RenderStyleConstants.h" | 48 #include "core/rendering/style/RenderStyleConstants.h" |
| 49 #include "core/rendering/style/SVGRenderStyleDefs.h" | 49 #include "core/rendering/style/SVGRenderStyleDefs.h" |
| 50 | 50 #include "wtf/MathExtras.h" |
| 51 #include <wtf/MathExtras.h> | |
| 52 | 51 |
| 53 namespace WebCore { | 52 namespace WebCore { |
| 54 | 53 |
| 55 template<> inline CSSPrimitiveValue::CSSPrimitiveValue(short i) | 54 template<> inline CSSPrimitiveValue::CSSPrimitiveValue(short i) |
| 56 : CSSValue(PrimitiveClass) | 55 : CSSValue(PrimitiveClass) |
| 57 { | 56 { |
| 58 m_primitiveUnitType = CSS_NUMBER; | 57 m_primitiveUnitType = CSS_NUMBER; |
| 59 m_value.num = static_cast<double>(i); | 58 m_value.num = static_cast<double>(i); |
| 60 } | 59 } |
| 61 | 60 |
| (...skipping 4620 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4682 break; | 4681 break; |
| 4683 } | 4682 } |
| 4684 | 4683 |
| 4685 ASSERT_NOT_REACHED(); | 4684 ASSERT_NOT_REACHED(); |
| 4686 return TouchActionNone; | 4685 return TouchActionNone; |
| 4687 } | 4686 } |
| 4688 | 4687 |
| 4689 } | 4688 } |
| 4690 | 4689 |
| 4691 #endif | 4690 #endif |
| OLD | NEW |