| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) Research In Motion Limited 2010. All rights reserved. | 2 * Copyright (C) Research In Motion Limited 2010. All rights reserved. |
| 3 * Copyright (C) 2013 Apple Inc. All rights reserved. | 3 * Copyright (C) 2013 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 * Library General Public License for more details. | 13 * Library General Public License for more details. |
| 14 * | 14 * |
| 15 * You should have received a copy of the GNU Library General Public License | 15 * You should have received a copy of the GNU Library General Public License |
| 16 * along with this library; see the file COPYING.LIB. If not, write to | 16 * along with this library; see the file COPYING.LIB. If not, write to |
| 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 18 * Boston, MA 02110-1301, USA. | 18 * Boston, MA 02110-1301, USA. |
| 19 */ | 19 */ |
| 20 | 20 |
| 21 #ifndef SVGPathStringSource_h | 21 #ifndef SVGPathStringSource_h |
| 22 #define SVGPathStringSource_h | 22 #define SVGPathStringSource_h |
| 23 | 23 |
| 24 #include "core/CoreExport.h" |
| 24 #include "core/svg/SVGPathSource.h" | 25 #include "core/svg/SVGPathSource.h" |
| 25 #include "wtf/text/WTFString.h" | 26 #include "wtf/text/WTFString.h" |
| 26 | 27 |
| 27 namespace blink { | 28 namespace blink { |
| 28 | 29 |
| 29 class SVGPathStringSource final : public SVGPathSource { | 30 class CORE_EXPORT SVGPathStringSource final : public SVGPathSource { |
| 30 public: | 31 public: |
| 31 explicit SVGPathStringSource(const String&); | 32 explicit SVGPathStringSource(const String&); |
| 32 | 33 |
| 33 private: | 34 private: |
| 34 bool hasMoreData() const override; | 35 bool hasMoreData() const override; |
| 35 SVGPathSegType peekSegmentType() override; | 36 SVGPathSegType peekSegmentType() override; |
| 36 PathSegmentData parseSegment() override; | 37 PathSegmentData parseSegment() override; |
| 37 | 38 |
| 38 void eatWhitespace(); | 39 void eatWhitespace(); |
| 39 float parseNumberWithError(); | 40 float parseNumberWithError(); |
| (...skipping 11 matching lines...) Expand all Loading... |
| 51 const LChar* m_character8; | 52 const LChar* m_character8; |
| 52 const UChar* m_character16; | 53 const UChar* m_character16; |
| 53 } m_end; | 54 } m_end; |
| 54 | 55 |
| 55 SVGPathSegType m_previousCommand; | 56 SVGPathSegType m_previousCommand; |
| 56 }; | 57 }; |
| 57 | 58 |
| 58 } // namespace blink | 59 } // namespace blink |
| 59 | 60 |
| 60 #endif // SVGPathStringSource_h | 61 #endif // SVGPathStringSource_h |
| OLD | NEW |