| 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 26 matching lines...) Expand all Loading... |
| 37 #include "core/css/CSSToLengthConversionData.h" | 37 #include "core/css/CSSToLengthConversionData.h" |
| 38 #include "core/style/ComputedStyleConstants.h" | 38 #include "core/style/ComputedStyleConstants.h" |
| 39 #include "core/style/SVGComputedStyleDefs.h" | 39 #include "core/style/SVGComputedStyleDefs.h" |
| 40 #include "core/style/LineClampValue.h" | 40 #include "core/style/LineClampValue.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" | |
| 48 #include "platform/scroll/ScrollableArea.h" | 47 #include "platform/scroll/ScrollableArea.h" |
| 49 #include "platform/text/TextDirection.h" | 48 #include "platform/text/TextDirection.h" |
| 50 #include "platform/text/TextRun.h" | 49 #include "platform/text/TextRun.h" |
| 51 #include "platform/text/UnicodeBidi.h" | 50 #include "platform/text/UnicodeBidi.h" |
| 52 #include "platform/text/WritingMode.h" | 51 #include "platform/text/WritingMode.h" |
| 53 #include "public/platform/WebBlendMode.h" | 52 #include "public/platform/WebBlendMode.h" |
| 54 #include "wtf/MathExtras.h" | 53 #include "wtf/MathExtras.h" |
| 55 | 54 |
| 56 namespace blink { | 55 namespace blink { |
| 57 | 56 |
| (...skipping 4576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4634 default: | 4633 default: |
| 4635 break; | 4634 break; |
| 4636 } | 4635 } |
| 4637 ASSERT_NOT_REACHED(); | 4636 ASSERT_NOT_REACHED(); |
| 4638 return ContainsNone; | 4637 return ContainsNone; |
| 4639 } | 4638 } |
| 4640 | 4639 |
| 4641 } // namespace blink | 4640 } // namespace blink |
| 4642 | 4641 |
| 4643 #endif | 4642 #endif |
| OLD | NEW |