Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(428)

Side by Side Diff: third_party/WebKit/Source/core/style/StylePath.cpp

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698