Title: [88740] trunk/Source/WebCore
Revision
88740
Author
[email protected]
Date
2011-06-13 17:42:09 -0700 (Mon, 13 Jun 2011)

Log Message

2011-06-13  Adam Barth  <[email protected]>

        Reviewed by David Levin.

        Remove redundant "true" parameter to scheduleLocationChange
        https://bugs.webkit.org/show_bug.cgi?id=62612

        This parameter defaults to true anyway.

        * loader/appcache/ApplicationCacheGroup.cpp:
        (WebCore::ApplicationCacheGroup::selectCache):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (88739 => 88740)


--- trunk/Source/WebCore/ChangeLog	2011-06-14 00:39:53 UTC (rev 88739)
+++ trunk/Source/WebCore/ChangeLog	2011-06-14 00:42:09 UTC (rev 88740)
@@ -1,3 +1,15 @@
+2011-06-13  Adam Barth  <[email protected]>
+
+        Reviewed by David Levin.
+
+        Remove redundant "true" parameter to scheduleLocationChange
+        https://bugs.webkit.org/show_bug.cgi?id=62612
+
+        This parameter defaults to true anyway.
+
+        * loader/appcache/ApplicationCacheGroup.cpp:
+        (WebCore::ApplicationCacheGroup::selectCache):
+
 2011-06-13  Kentaro Hara  <[email protected]>
 
         Reviewed by Alexey Proskuryakov.

Modified: trunk/Source/WebCore/loader/appcache/ApplicationCacheGroup.cpp (88739 => 88740)


--- trunk/Source/WebCore/loader/appcache/ApplicationCacheGroup.cpp	2011-06-14 00:39:53 UTC (rev 88739)
+++ trunk/Source/WebCore/loader/appcache/ApplicationCacheGroup.cpp	2011-06-14 00:42:09 UTC (rev 88740)
@@ -178,7 +178,7 @@
             // Restart the current navigation from the top of the navigation algorithm, undoing any changes that were made
             // as part of the initial load.
             // The navigation will not result in the same resource being loaded, because "foreign" entries are never picked during navigation.
-            frame->navigationScheduler()->scheduleLocationChange(frame->document()->securityOrigin(), documentLoader->url(), frame->loader()->referrer(), true);
+            frame->navigationScheduler()->scheduleLocationChange(frame->document()->securityOrigin(), documentLoader->url(), frame->loader()->referrer());
         }
         
         return;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to