| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. All rights reserved. | 2 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #ifndef GraphicsTypes_h | 26 #ifndef GraphicsTypes_h |
| 27 #define GraphicsTypes_h | 27 #define GraphicsTypes_h |
| 28 | 28 |
| 29 #include "platform/PlatformExport.h" | 29 #include "platform/PlatformExport.h" |
| 30 #include "public/platform/WebBlendMode.h" | 30 #include "public/platform/WebBlendMode.h" |
| 31 #include "third_party/skia/include/core/SkPaint.h" | 31 #include "third_party/skia/include/core/SkPaint.h" |
| 32 #include "wtf/Forward.h" | 32 #include "wtf/Forward.h" |
| 33 | 33 |
| 34 namespace WebCore { | 34 namespace blink { |
| 35 | 35 |
| 36 enum StrokeStyle { | 36 enum StrokeStyle { |
| 37 NoStroke, | 37 NoStroke, |
| 38 SolidStroke, | 38 SolidStroke, |
| 39 DottedStroke, | 39 DottedStroke, |
| 40 DashedStroke, | 40 DashedStroke, |
| 41 DoubleStroke, | 41 DoubleStroke, |
| 42 WavyStroke, | 42 WavyStroke, |
| 43 }; | 43 }; |
| 44 | 44 |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 | 116 |
| 117 PLATFORM_EXPORT String lineJoinName(LineJoin); | 117 PLATFORM_EXPORT String lineJoinName(LineJoin); |
| 118 PLATFORM_EXPORT bool parseLineJoin(const String&, LineJoin&); | 118 PLATFORM_EXPORT bool parseLineJoin(const String&, LineJoin&); |
| 119 | 119 |
| 120 PLATFORM_EXPORT String textAlignName(TextAlign); | 120 PLATFORM_EXPORT String textAlignName(TextAlign); |
| 121 PLATFORM_EXPORT bool parseTextAlign(const String&, TextAlign&); | 121 PLATFORM_EXPORT bool parseTextAlign(const String&, TextAlign&); |
| 122 | 122 |
| 123 PLATFORM_EXPORT String textBaselineName(TextBaseline); | 123 PLATFORM_EXPORT String textBaselineName(TextBaseline); |
| 124 PLATFORM_EXPORT bool parseTextBaseline(const String&, TextBaseline&); | 124 PLATFORM_EXPORT bool parseTextBaseline(const String&, TextBaseline&); |
| 125 | 125 |
| 126 } // namespace WebCore | 126 } // namespace blink |
| 127 | 127 |
| 128 #endif | 128 #endif |
| OLD | NEW |