Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
|
pdr.
2016/01/07 19:47:01
2016!
fs
2016/01/08 12:14:27
Fixed.
| |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef StylePath_h | |
| 6 #define StylePath_h | |
| 7 | |
| 8 #include "platform/graphics/Path.h" | |
| 9 #include "platform/heap/Handle.h" | |
| 10 #include "wtf/PassRefPtr.h" | |
| 11 #include "wtf/RefCounted.h" | |
| 12 #include "wtf/RefPtr.h" | |
| 13 | |
| 14 namespace blink { | |
| 15 | |
| 16 class CSSValue; | |
| 17 class SVGPathByteStream; | |
| 18 | |
| 19 class StylePath : public RefCounted<StylePath> { | |
| 20 public: | |
| 21 static PassRefPtr<StylePath> create(PassRefPtr<SVGPathByteStream>); | |
| 22 ~StylePath(); | |
| 23 | |
| 24 static StylePath* emptyPath(); | |
| 25 | |
| 26 const Path& path() const { return m_path; } | |
| 27 const SVGPathByteStream& byteStream() const; | |
| 28 | |
| 29 PassRefPtrWillBeRawPtr<CSSValue> computedCSSValue() const; | |
| 30 | |
| 31 bool equals(const StylePath&) const; | |
| 32 | |
| 33 private: | |
| 34 explicit StylePath(PassRefPtr<SVGPathByteStream>); | |
| 35 | |
| 36 RefPtr<SVGPathByteStream> m_byteStream; | |
| 37 Path m_path; | |
| 38 }; | |
| 39 | |
| 40 } // namespace blink | |
| 41 | |
| 42 #endif // StylePath_h | |
| OLD | NEW |