Title: [162991] trunk/Source/WebKit2
Revision
162991
Author
ander...@apple.com
Date
2014-01-28 17:44:47 -0800 (Tue, 28 Jan 2014)

Log Message

Fix a thinko.

* UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::goBack):
Remove early return if isValid() is true.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (162990 => 162991)


--- trunk/Source/WebKit2/ChangeLog	2014-01-29 01:39:32 UTC (rev 162990)
+++ trunk/Source/WebKit2/ChangeLog	2014-01-29 01:44:47 UTC (rev 162991)
@@ -1,5 +1,13 @@
 2014-01-28  Anders Carlsson  <ander...@apple.com>
 
+        Fix a thinko.
+
+        * UIProcess/WebPageProxy.cpp:
+        (WebKit::WebPageProxy::goBack):
+        Remove early return if isValid() is true.
+
+2014-01-28  Anders Carlsson  <ander...@apple.com>
+
         WebPage should be in charge of creating document loaders
         https://bugs.webkit.org/show_bug.cgi?id=127818
 

Modified: trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp (162990 => 162991)


--- trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp	2014-01-29 01:39:32 UTC (rev 162990)
+++ trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp	2014-01-29 01:44:47 UTC (rev 162991)
@@ -789,9 +789,6 @@
 
 void WebPageProxy::goBack()
 {
-    if (isValid())
-        return;
-
     WebBackForwardListItem* backItem = m_backForwardList->backItem();
     if (!backItem)
         return;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to