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

Unified Diff: Source/core/html/HTMLLinkElement.cpp

Issue 313813002: Oilpan: Replace RefPtrs to Node and its subclasses in core/dom/ with Oilpan transtion types. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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 side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698