| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/css/CSSPathValue.h" | 5 #include "core/css/CSSPathValue.h" |
| 6 | 6 |
| 7 #include "core/style/StylePath.h" | 7 #include "core/style/StylePath.h" |
| 8 #include "core/svg/SVGPathUtilities.h" | 8 #include "core/svg/SVGPathUtilities.h" |
| 9 | 9 |
| 10 namespace blink { | 10 namespace blink { |
| 11 | 11 |
| 12 RawPtr<CSSPathValue> CSSPathValue::create(PassRefPtr<StylePath> stylePath) | 12 CSSPathValue* CSSPathValue::create(PassRefPtr<StylePath> stylePath) |
| 13 { | 13 { |
| 14 return new CSSPathValue(stylePath); | 14 return new CSSPathValue(stylePath); |
| 15 } | 15 } |
| 16 | 16 |
| 17 RawPtr<CSSPathValue> CSSPathValue::create(PassOwnPtr<SVGPathByteStream> pathByte
Stream) | 17 CSSPathValue* CSSPathValue::create(PassOwnPtr<SVGPathByteStream> pathByteStream) |
| 18 { | 18 { |
| 19 return CSSPathValue::create(StylePath::create(pathByteStream)); | 19 return CSSPathValue::create(StylePath::create(pathByteStream)); |
| 20 } | 20 } |
| 21 | 21 |
| 22 CSSPathValue::CSSPathValue(PassRefPtr<StylePath> stylePath) | 22 CSSPathValue::CSSPathValue(PassRefPtr<StylePath> stylePath) |
| 23 : CSSValue(PathClass) | 23 : CSSValue(PathClass) |
| 24 , m_stylePath(stylePath) | 24 , m_stylePath(stylePath) |
| 25 { | 25 { |
| 26 ASSERT(m_stylePath); | 26 ASSERT(m_stylePath); |
| 27 } | 27 } |
| 28 | 28 |
| 29 namespace { | 29 namespace { |
| 30 | 30 |
| 31 RawPtr<CSSPathValue> createPathValue() | 31 CSSPathValue* createPathValue() |
| 32 { | 32 { |
| 33 OwnPtr<SVGPathByteStream> pathByteStream = SVGPathByteStream::create(); | 33 OwnPtr<SVGPathByteStream> pathByteStream = SVGPathByteStream::create(); |
| 34 // Need to be registered as LSan ignored, as it will be reachable and | 34 // Need to be registered as LSan ignored, as it will be reachable and |
| 35 // separately referred to by emptyPathValue() callers. | 35 // separately referred to by emptyPathValue() callers. |
| 36 LEAK_SANITIZER_IGNORE_OBJECT(pathByteStream.get()); | 36 LEAK_SANITIZER_IGNORE_OBJECT(pathByteStream.get()); |
| 37 return CSSPathValue::create(pathByteStream.release()); | 37 return CSSPathValue::create(pathByteStream.release()); |
| 38 } | 38 } |
| 39 | 39 |
| 40 } // namespace | 40 } // namespace |
| 41 | 41 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 54 { | 54 { |
| 55 return byteStream() == other.byteStream(); | 55 return byteStream() == other.byteStream(); |
| 56 } | 56 } |
| 57 | 57 |
| 58 DEFINE_TRACE_AFTER_DISPATCH(CSSPathValue) | 58 DEFINE_TRACE_AFTER_DISPATCH(CSSPathValue) |
| 59 { | 59 { |
| 60 CSSValue::traceAfterDispatch(visitor); | 60 CSSValue::traceAfterDispatch(visitor); |
| 61 } | 61 } |
| 62 | 62 |
| 63 } // namespace blink | 63 } // namespace blink |
| OLD | NEW |