Index: Source/bindings/core/v8/Dictionary.cpp |
diff --git a/Source/bindings/core/v8/Dictionary.cpp b/Source/bindings/core/v8/Dictionary.cpp |
index a7f3589cae941b95b395f5e79b3fc0e7e33df617..88e8213ea2b6f59a575a432e622668c77aa15f1a 100644 |
--- a/Source/bindings/core/v8/Dictionary.cpp |
+++ b/Source/bindings/core/v8/Dictionary.cpp |
@@ -159,7 +159,7 @@ bool Dictionary::getWithUndefinedOrNullCheck(const String& key, RefPtrWillBeMemb |
return true; |
} |
-bool Dictionary::getWithUndefinedOrNullCheck(const String& key, RefPtr<Path2D>& value) const |
+bool Dictionary::getWithUndefinedOrNullCheck(const String& key, RefPtrWillBeMember<Path2D>& value) const |
{ |
v8::Local<v8::Value> v8Value; |
if (!getKey(key, v8Value) || blink::isUndefinedOrNull(v8Value)) |