| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> |
| 4 * Copyright (C) 2005 Eric Seidel <eric@webkit.org> | 4 * Copyright (C) 2005 Eric Seidel <eric@webkit.org> |
| 5 * Copyright (C) 2006 Apple Computer, Inc | 5 * Copyright (C) 2006 Apple Computer, Inc |
| 6 * Copyright (C) 2009 Google, Inc. | 6 * Copyright (C) 2009 Google, Inc. |
| 7 * Copyright (C) 2011 Renata Hodovan <reni@webkit.org> | 7 * Copyright (C) 2011 Renata Hodovan <reni@webkit.org> |
| 8 * Copyright (C) 2011 University of Szeged | 8 * Copyright (C) 2011 University of Szeged |
| 9 * | 9 * |
| 10 * This library is free software; you can redistribute it and/or | 10 * This library is free software; you can redistribute it and/or |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 FloatRect hitTestStrokeBoundingBox() const override; | 44 FloatRect hitTestStrokeBoundingBox() const override; |
| 45 FloatRect calculateUpdatedStrokeBoundingBox() const; | 45 FloatRect calculateUpdatedStrokeBoundingBox() const; |
| 46 | 46 |
| 47 FloatRect markerRect(float strokeWidth) const; | 47 FloatRect markerRect(float strokeWidth) const; |
| 48 bool shouldGenerateMarkerPositions() const; | 48 bool shouldGenerateMarkerPositions() const; |
| 49 void processMarkerPositions(); | 49 void processMarkerPositions(); |
| 50 | 50 |
| 51 Vector<MarkerPosition> m_markerPositions; | 51 Vector<MarkerPosition> m_markerPositions; |
| 52 }; | 52 }; |
| 53 | 53 |
| 54 } | 54 } // namespace blink |
| 55 | 55 |
| 56 #endif | 56 #endif |
| OLD | NEW |