| 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 17 matching lines...) Expand all Loading... |
| 28 */ | 28 */ |
| 29 | 29 |
| 30 #ifndef CSSPrimitiveValueMappings_h | 30 #ifndef CSSPrimitiveValueMappings_h |
| 31 #define CSSPrimitiveValueMappings_h | 31 #define CSSPrimitiveValueMappings_h |
| 32 | 32 |
| 33 #include "core/CSSValueKeywords.h" | 33 #include "core/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/css/CSSToLengthConversionData.h" | 37 #include "core/css/CSSToLengthConversionData.h" |
| 38 #include "core/layout/style/SVGLayoutStyleDefs.h" | 38 #include "core/layout/style/SVGComputedStyleDefs.h" |
| 39 #include "core/layout/style/LineClampValue.h" | 39 #include "core/layout/style/LineClampValue.h" |
| 40 #include "core/layout/style/LayoutStyleConstants.h" | 40 #include "core/layout/style/ComputedStyleConstants.h" |
| 41 #include "platform/Length.h" | 41 #include "platform/Length.h" |
| 42 #include "platform/ThemeTypes.h" | 42 #include "platform/ThemeTypes.h" |
| 43 #include "platform/fonts/FontDescription.h" | 43 #include "platform/fonts/FontDescription.h" |
| 44 #include "platform/fonts/FontSmoothingMode.h" | 44 #include "platform/fonts/FontSmoothingMode.h" |
| 45 #include "platform/fonts/TextRenderingMode.h" | 45 #include "platform/fonts/TextRenderingMode.h" |
| 46 #include "platform/graphics/GraphicsTypes.h" | 46 #include "platform/graphics/GraphicsTypes.h" |
| 47 #include "platform/graphics/Path.h" | 47 #include "platform/graphics/Path.h" |
| 48 #include "platform/scroll/ScrollableArea.h" | 48 #include "platform/scroll/ScrollableArea.h" |
| 49 #include "platform/text/TextDirection.h" | 49 #include "platform/text/TextDirection.h" |
| 50 #include "platform/text/TextRun.h" | 50 #include "platform/text/TextRun.h" |
| (...skipping 4651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4702 default: | 4702 default: |
| 4703 break; | 4703 break; |
| 4704 } | 4704 } |
| 4705 ASSERT_NOT_REACHED(); | 4705 ASSERT_NOT_REACHED(); |
| 4706 return ScrollBehaviorAuto; | 4706 return ScrollBehaviorAuto; |
| 4707 } | 4707 } |
| 4708 | 4708 |
| 4709 } | 4709 } |
| 4710 | 4710 |
| 4711 #endif | 4711 #endif |
| OLD | NEW |