| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "core/style/StylePath.h" | 5 #include "core/style/StylePath.h" |
| 6 | 6 |
| 7 #include "core/css/CSSPathValue.h" | 7 #include "core/css/CSSPathValue.h" |
| 8 #include "core/svg/SVGPathByteStream.h" | 8 #include "core/svg/SVGPathByteStream.h" |
| 9 #include "core/svg/SVGPathUtilities.h" | 9 #include "core/svg/SVGPathUtilities.h" |
| 10 #include "platform/graphics/Path.h" | 10 #include "platform/graphics/Path.h" |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 bool StylePath::isClosed() const | 52 bool StylePath::isClosed() const |
| 53 { | 53 { |
| 54 return path().isClosed(); | 54 return path().isClosed(); |
| 55 } | 55 } |
| 56 | 56 |
| 57 const SVGPathByteStream& StylePath::byteStream() const | 57 const SVGPathByteStream& StylePath::byteStream() const |
| 58 { | 58 { |
| 59 return *m_byteStream; | 59 return *m_byteStream; |
| 60 } | 60 } |
| 61 | 61 |
| 62 PassRefPtrWillBeRawPtr<CSSValue> StylePath::computedCSSValue() const | 62 RawPtr<CSSValue> StylePath::computedCSSValue() const |
| 63 { | 63 { |
| 64 return CSSPathValue::create(m_byteStream, const_cast<StylePath*>(this)); | 64 return CSSPathValue::create(m_byteStream, const_cast<StylePath*>(this)); |
| 65 } | 65 } |
| 66 | 66 |
| 67 bool StylePath::equals(const StylePath& other) const | 67 bool StylePath::equals(const StylePath& other) const |
| 68 { | 68 { |
| 69 return *m_byteStream == *other.m_byteStream; | 69 return *m_byteStream == *other.m_byteStream; |
| 70 } | 70 } |
| 71 | 71 |
| 72 } // namespace blink | 72 } // namespace blink |
| OLD | NEW |