Title: [164907] trunk/Source/WebCore
Revision
164907
Author
aes...@apple.com
Date
2014-02-28 21:14:42 -0800 (Fri, 28 Feb 2014)

Log Message

[iOS] FrameLoader has a NULL m_progressTracker when initialized with initForSynthesizedDocument()
https://bugs.webkit.org/show_bug.cgi?id=129534

Reviewed by Simon Fraser.

No new tests because TestWebKitAPI does not yet support iOS. See <http://webkit.org/b/129535>.

* loader/FrameLoader.cpp:
(WebCore::FrameLoader::initForSynthesizedDocument): Create a FrameProgressTracker.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (164906 => 164907)


--- trunk/Source/WebCore/ChangeLog	2014-03-01 05:05:16 UTC (rev 164906)
+++ trunk/Source/WebCore/ChangeLog	2014-03-01 05:14:42 UTC (rev 164907)
@@ -1,3 +1,15 @@
+2014-02-28  Andy Estes  <aes...@apple.com>
+
+        [iOS] FrameLoader has a NULL m_progressTracker when initialized with initForSynthesizedDocument()
+        https://bugs.webkit.org/show_bug.cgi?id=129534
+
+        Reviewed by Simon Fraser.
+
+        No new tests because TestWebKitAPI does not yet support iOS. See <http://webkit.org/b/129535>.
+
+        * loader/FrameLoader.cpp:
+        (WebCore::FrameLoader::initForSynthesizedDocument): Create a FrameProgressTracker.
+
 2014-02-28  Sam Weinig  <s...@webkit.org>
 
         ASSERT(isMainThread()) hit under platformUserPreferredLanguages() with WebKit1 and WebKit2 in the same process

Modified: trunk/Source/WebCore/loader/FrameLoader.cpp (164906 => 164907)


--- trunk/Source/WebCore/loader/FrameLoader.cpp	2014-03-01 05:05:16 UTC (rev 164906)
+++ trunk/Source/WebCore/loader/FrameLoader.cpp	2014-03-01 05:14:42 UTC (rev 164907)
@@ -298,6 +298,7 @@
     m_needsClear = true;
 
     m_networkingContext = m_client.createNetworkingContext();
+    m_progressTracker = std::make_unique<FrameProgressTracker>(m_frame);
 }
 #endif
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to