| 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 #include <memory> | 9 #include <memory> |
| 10 | 10 |
| 11 namespace blink { | 11 namespace blink { |
| 12 | 12 |
| 13 CSSPathValue* CSSPathValue::create(PassRefPtr<StylePath> stylePath) | 13 CSSPathValue* CSSPathValue::create(PassRefPtr<StylePath> stylePath) |
| 14 { | 14 { |
| 15 return new CSSPathValue(stylePath); | 15 return new CSSPathValue(std::move(stylePath)); |
| 16 } | 16 } |
| 17 | 17 |
| 18 CSSPathValue* CSSPathValue::create(std::unique_ptr<SVGPathByteStream> pathByteSt
ream) | 18 CSSPathValue* CSSPathValue::create(std::unique_ptr<SVGPathByteStream> pathByteSt
ream) |
| 19 { | 19 { |
| 20 return CSSPathValue::create(StylePath::create(std::move(pathByteStream))); | 20 return CSSPathValue::create(StylePath::create(std::move(pathByteStream))); |
| 21 } | 21 } |
| 22 | 22 |
| 23 CSSPathValue::CSSPathValue(PassRefPtr<StylePath> stylePath) | 23 CSSPathValue::CSSPathValue(PassRefPtr<StylePath> stylePath) |
| 24 : CSSValue(PathClass) | 24 : CSSValue(PathClass) |
| 25 , m_stylePath(stylePath) | 25 , m_stylePath(stylePath) |
| (...skipping 29 matching lines...) Expand all Loading... |
| 55 { | 55 { |
| 56 return byteStream() == other.byteStream(); | 56 return byteStream() == other.byteStream(); |
| 57 } | 57 } |
| 58 | 58 |
| 59 DEFINE_TRACE_AFTER_DISPATCH(CSSPathValue) | 59 DEFINE_TRACE_AFTER_DISPATCH(CSSPathValue) |
| 60 { | 60 { |
| 61 CSSValue::traceAfterDispatch(visitor); | 61 CSSValue::traceAfterDispatch(visitor); |
| 62 } | 62 } |
| 63 | 63 |
| 64 } // namespace blink | 64 } // namespace blink |
| OLD | NEW |