Changeset 182703 in webkit
- Timestamp:
- Apr 13, 2015, 3:41:51 AM (10 years ago)
- Location:
- releases/WebKitGTK/webkit-2.8/Source/WebKit2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
releases/WebKitGTK/webkit-2.8/Source/WebKit2/ChangeLog
r182694 r182703 1 2015-04-02 Alexey Proskuryakov <ap@apple.com> 2 3 Make checkURLReceivedFromWebProcess not rely on details of platform URL implementation. 4 https://bugs.webkit.org/show_bug.cgi?id=143222 5 rdar://problem/19978997 6 7 Reviewed by Sam Weinig. 8 9 * UIProcess/WebProcessProxy.cpp: 10 (WebKit::WebProcessProxy::checkURLReceivedFromWebProcess): 11 1 12 2015-03-31 Carlos Garcia Campos <cgarcia@igalia.com> 2 13 -
releases/WebKitGTK/webkit-2.8/Source/WebKit2/UIProcess/WebProcessProxy.cpp
r182688 r182703 329 329 String path = url.fileSystemPath(); 330 330 for (WebBackForwardListItemMap::iterator iter = m_backForwardListItemMap.begin(), end = m_backForwardListItemMap.end(); iter != end; ++iter) { 331 if (URL(URL(), iter->value->url()).fileSystemPath() == path) 331 URL itemURL(URL(), iter->value->url()); 332 if (itemURL.isLocalFile() && itemURL.fileSystemPath() == path) 332 333 return true; 333 if (URL(URL(), iter->value->originalURL()).fileSystemPath() == path) 334 URL itemOriginalURL(URL(), iter->value->originalURL()); 335 if (itemOriginalURL.isLocalFile() && itemOriginalURL.fileSystemPath() == path) 334 336 return true; 335 337 }
Note:
See TracChangeset
for help on using the changeset viewer.