Title: [206781] trunk/Source/WebKit2
Revision
206781
Author
timothy_hor...@apple.com
Date
2016-10-04 14:08:39 -0700 (Tue, 04 Oct 2016)

Log Message

Fix a typo in WebBackForwardListItem (highed->highest)
https://bugs.webkit.org/show_bug.cgi?id=162935

Reviewed by Anders Carlsson.

* Shared/WebBackForwardListItem.cpp:
(WebKit::WebBackForwardListItem::highestUsedItemID):
(WebKit::WebBackForwardListItem::highedUsedItemID): Deleted.
* Shared/WebBackForwardListItem.h:
* UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::creationParameters):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (206780 => 206781)


--- trunk/Source/WebKit2/ChangeLog	2016-10-04 19:37:42 UTC (rev 206780)
+++ trunk/Source/WebKit2/ChangeLog	2016-10-04 21:08:39 UTC (rev 206781)
@@ -1,3 +1,17 @@
+2016-10-04  Tim Horton  <timothy_hor...@apple.com>
+
+        Fix a typo in WebBackForwardListItem (highed->highest)
+        https://bugs.webkit.org/show_bug.cgi?id=162935
+
+        Reviewed by Anders Carlsson.
+
+        * Shared/WebBackForwardListItem.cpp:
+        (WebKit::WebBackForwardListItem::highestUsedItemID):
+        (WebKit::WebBackForwardListItem::highedUsedItemID): Deleted.
+        * Shared/WebBackForwardListItem.h:
+        * UIProcess/WebPageProxy.cpp:
+        (WebKit::WebPageProxy::creationParameters):
+
 2016-10-04  Yusuke Suzuki  <utatane....@gmail.com>
 
         [DOMJIT] Introduce DOMJIT::GetterSetter to tell JIT information

Modified: trunk/Source/WebKit2/Shared/WebBackForwardListItem.cpp (206780 => 206781)


--- trunk/Source/WebKit2/Shared/WebBackForwardListItem.cpp	2016-10-04 19:37:42 UTC (rev 206780)
+++ trunk/Source/WebKit2/Shared/WebBackForwardListItem.cpp	2016-10-04 21:08:39 UTC (rev 206781)
@@ -98,7 +98,7 @@
     return documentTreesAreEqual(mainFrameState, otherMainFrameState);
 }
 
-uint64_t WebBackForwardListItem::highedUsedItemID()
+uint64_t WebBackForwardListItem::highestUsedItemID()
 {
     return highestUsedItemID;
 }

Modified: trunk/Source/WebKit2/Shared/WebBackForwardListItem.h (206780 => 206781)


--- trunk/Source/WebKit2/Shared/WebBackForwardListItem.h	2016-10-04 19:37:42 UTC (rev 206780)
+++ trunk/Source/WebKit2/Shared/WebBackForwardListItem.h	2016-10-04 21:08:39 UTC (rev 206781)
@@ -64,7 +64,7 @@
     void setSnapshot(PassRefPtr<ViewSnapshot> snapshot) { m_itemState.snapshot = snapshot; }
 #endif
 
-    static uint64_t highedUsedItemID();
+    static uint64_t highestUsedItemID();
 
 private:
     explicit WebBackForwardListItem(BackForwardListItemState, uint64_t pageID);

Modified: trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp (206780 => 206781)


--- trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp	2016-10-04 19:37:42 UTC (rev 206780)
+++ trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp	2016-10-04 21:08:39 UTC (rev 206781)
@@ -5463,7 +5463,7 @@
     parameters.userAgent = userAgent();
     parameters.itemStates = m_backForwardList->itemStates();
     parameters.sessionID = m_sessionID;
-    parameters.highestUsedBackForwardItemID = WebBackForwardListItem::highedUsedItemID();
+    parameters.highestUsedBackForwardItemID = WebBackForwardListItem::highestUsedItemID();
     parameters.userContentControllerID = m_userContentController->identifier();
     parameters.visitedLinkTableID = m_visitedLinkStore->identifier();
     parameters.websiteDataStoreID = m_websiteDataStore->identifier();
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to