Title: [151708] trunk/Source/WebKit2
- Revision
- 151708
- Author
- [email protected]
- Date
- 2013-06-18 17:12:07 -0700 (Tue, 18 Jun 2013)
Log Message
Unreviewed. Fix a typo that may be causing some test failures.
* WebProcess/WebCoreSupport/mac/WebFrameNetworkingContext.mm:
(WebKit::WebFrameNetworkingContext::scheduledRunLoopPairs):
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (151707 => 151708)
--- trunk/Source/WebKit2/ChangeLog 2013-06-18 23:39:44 UTC (rev 151707)
+++ trunk/Source/WebKit2/ChangeLog 2013-06-19 00:12:07 UTC (rev 151708)
@@ -1,3 +1,10 @@
+2013-06-18 Roger Fong <[email protected]>
+
+ Unreviewed. Fix a typo that may be causing some test failures.
+
+ * WebProcess/WebCoreSupport/mac/WebFrameNetworkingContext.mm:
+ (WebKit::WebFrameNetworkingContext::scheduledRunLoopPairs):
+
2013-06-18 Anders Carlsson <[email protected]>
Make it possible to set a minimum height for auto-layout
Modified: trunk/Source/WebKit2/WebProcess/WebCoreSupport/mac/WebFrameNetworkingContext.mm (151707 => 151708)
--- trunk/Source/WebKit2/WebProcess/WebCoreSupport/mac/WebFrameNetworkingContext.mm 2013-06-18 23:39:44 UTC (rev 151707)
+++ trunk/Source/WebKit2/WebProcess/WebCoreSupport/mac/WebFrameNetworkingContext.mm 2013-06-19 00:12:07 UTC (rev 151708)
@@ -99,8 +99,8 @@
SchedulePairHashSet* WebFrameNetworkingContext::scheduledRunLoopPairs() const
{
if (!frame() || !frame()->page())
- return frame()->page()->scheduledRunLoopPairs();
- return 0;
+ return 0;
+ return frame()->page()->scheduledRunLoopPairs();
}
RetainPtr<CFDataRef> WebFrameNetworkingContext::sourceApplicationAuditData() const
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes