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 23 matching lines...) Expand all Loading... |
34 #include "CSSPrimitiveValue.h" | 34 #include "CSSPrimitiveValue.h" |
35 #include "CSSReflectionDirection.h" | 35 #include "CSSReflectionDirection.h" |
36 #include "CSSValueKeywords.h" | 36 #include "CSSValueKeywords.h" |
37 #include "core/platform/graphics/ColorSpace.h" | 37 #include "core/platform/graphics/ColorSpace.h" |
38 #include "core/platform/graphics/FontDescription.h" | 38 #include "core/platform/graphics/FontDescription.h" |
39 #include "core/platform/graphics/FontSmoothingMode.h" | 39 #include "core/platform/graphics/FontSmoothingMode.h" |
40 #include "core/platform/graphics/GraphicsTypes.h" | 40 #include "core/platform/graphics/GraphicsTypes.h" |
41 #if ENABLE(CSS_IMAGE_ORIENTATION) | 41 #if ENABLE(CSS_IMAGE_ORIENTATION) |
42 #include "core/platform/graphics/ImageOrientation.h" | 42 #include "core/platform/graphics/ImageOrientation.h" |
43 #endif | 43 #endif |
44 #include "Length.h" | |
45 #include "LineClampValue.h" | 44 #include "LineClampValue.h" |
46 #include "RenderStyleConstants.h" | 45 #include "RenderStyleConstants.h" |
47 #include "SVGRenderStyleDefs.h" | 46 #include "SVGRenderStyleDefs.h" |
48 #include "ThemeTypes.h" | 47 #include "core/platform/Length.h" |
| 48 #include "core/platform/ThemeTypes.h" |
49 #include "core/platform/graphics/Path.h" | 49 #include "core/platform/graphics/Path.h" |
50 #include "core/platform/graphics/TextRenderingMode.h" | 50 #include "core/platform/graphics/TextRenderingMode.h" |
51 #include "core/platform/text/TextDirection.h" | 51 #include "core/platform/text/TextDirection.h" |
52 #include "core/platform/text/UnicodeBidi.h" | 52 #include "core/platform/text/UnicodeBidi.h" |
53 #include "core/platform/text/WritingMode.h" | 53 #include "core/platform/text/WritingMode.h" |
54 | 54 |
55 #include <wtf/MathExtras.h> | 55 #include <wtf/MathExtras.h> |
56 | 56 |
57 namespace WebCore { | 57 namespace WebCore { |
58 | 58 |
(...skipping 4527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4586 | 4586 |
4587 ASSERT_NOT_REACHED(); | 4587 ASSERT_NOT_REACHED(); |
4588 return OriginTopLeft; | 4588 return OriginTopLeft; |
4589 } | 4589 } |
4590 | 4590 |
4591 #endif // ENABLE(CSS_IMAGE_ORIENTATION) | 4591 #endif // ENABLE(CSS_IMAGE_ORIENTATION) |
4592 | 4592 |
4593 } | 4593 } |
4594 | 4594 |
4595 #endif | 4595 #endif |
OLD | NEW |