Chromium Code Reviews| Index: Source/core/html/HTMLLinkElement.cpp |
| diff --git a/Source/core/html/HTMLLinkElement.cpp b/Source/core/html/HTMLLinkElement.cpp |
| index 6a54abeff94dad64462ed120893f56716335a10c..35cb3bce5675cc0c80225a1b169a7c23e7ab887f 100644 |
| --- a/Source/core/html/HTMLLinkElement.cpp |
| +++ b/Source/core/html/HTMLLinkElement.cpp |
| @@ -473,7 +473,7 @@ void LinkStyle::setCSSStyleSheet(const String& href, const KURL& baseURL, const |
| } |
| // Completing the sheet load may cause scripts to execute. |
| - RefPtrWillBeRawPtr<Node> protector(m_owner); |
| + RefPtrWillBeRawPtr<Node> protector(m_owner.get()); |
|
tkent
2014/06/04 08:58:45
RawPtr constructors are ambiguous in this case.
|
| CSSParserContext parserContext(m_owner->document(), 0, baseURL, charset); |