Title: [142462] trunk/Source/WebCore
- Revision
- 142462
- Author
- zandober...@gmail.com
- Date
- 2013-02-11 06:42:07 -0800 (Mon, 11 Feb 2013)
Log Message
Unreviewed build fix for the WTFURL backend of KURL.
* platform/KURL.cpp:
(WebCore::KURL::isSafeToSendToAnotherThread): m_urlImpl is of RefPtr type so use
the appropriate operator on it when calling the isSafeToSendToAnotherThread method.
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (142461 => 142462)
--- trunk/Source/WebCore/ChangeLog 2013-02-11 13:55:18 UTC (rev 142461)
+++ trunk/Source/WebCore/ChangeLog 2013-02-11 14:42:07 UTC (rev 142462)
@@ -1,3 +1,11 @@
+2013-02-11 Zan Dobersek <zdober...@igalia.com>
+
+ Unreviewed build fix for the WTFURL backend of KURL.
+
+ * platform/KURL.cpp:
+ (WebCore::KURL::isSafeToSendToAnotherThread): m_urlImpl is of RefPtr type so use
+ the appropriate operator on it when calling the isSafeToSendToAnotherThread method.
+
2013-02-11 Mike West <mk...@chromium.org>
Range::collapsed callers should explicitly ASSERT_NO_EXCEPTION.
Modified: trunk/Source/WebCore/platform/KURL.cpp (142461 => 142462)
--- trunk/Source/WebCore/platform/KURL.cpp 2013-02-11 13:55:18 UTC (rev 142461)
+++ trunk/Source/WebCore/platform/KURL.cpp 2013-02-11 14:42:07 UTC (rev 142462)
@@ -1935,7 +1935,7 @@
#if USE(GOOGLEURL)
return m_url.isSafeToSendToAnotherThread();
#elif USE(WTFURL)
- return m_urlImpl.isSafeToSendToAnotherThread();
+ return m_urlImpl->isSafeToSendToAnotherThread();
#else // !USE(GOOGLEURL)
return m_string.isSafeToSendToAnotherThread();
#endif
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes