Index: third_party/WebKit/Source/core/css/CSSPathValue.cpp |
diff --git a/third_party/WebKit/Source/core/css/CSSPathValue.cpp b/third_party/WebKit/Source/core/css/CSSPathValue.cpp |
index 8b0bab4fa2f65c8842a23e1a5517b3dc40ef23b7..43421478e261c8400c94ec18799ad3873a9b02b4 100644 |
--- a/third_party/WebKit/Source/core/css/CSSPathValue.cpp |
+++ b/third_party/WebKit/Source/core/css/CSSPathValue.cpp |
@@ -39,10 +39,10 @@ RawPtr<CSSPathValue> createPathValue() |
} // namespace |
-CSSPathValue* CSSPathValue::emptyPathValue() |
+CSSPathValue& CSSPathValue::emptyPathValue() |
{ |
- DEFINE_STATIC_LOCAL(Persistent<CSSPathValue>, empty, (createPathValue())); |
- return empty.get(); |
+ DEFINE_STATIC_LOCAL(CSSPathValue, empty, (createPathValue())); |
+ return empty; |
} |
String CSSPathValue::customCSSText() const |