Changeset 245343 in webkit
- Timestamp:
- May 15, 2019, 2:14:33 PM (7 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UIProcess/WebProcessCache.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r245339 r245343 1 2019-05-15 Chris Dumez <cdumez@apple.com> 2 3 Unreviewed, fix assertion introduced in r245339. 4 5 * UIProcess/WebProcessCache.cpp: 6 (WebKit::WebProcessCache::CachedProcess::CachedProcess): 7 1 8 2019-05-15 Sihui Liu <sihui_liu@apple.com> 2 9 -
trunk/Source/WebKit/UIProcess/WebProcessCache.cpp
r245339 r245343 248 248 { 249 249 RELEASE_ASSERT(!m_process->pageCount()); 250 RELEASE_ASSERT_WITH_MESSAGE(!m_process->websiteDataStore().hasProcess( process.ptr()), "Only processes with pages should be registered with the data store");250 RELEASE_ASSERT_WITH_MESSAGE(!m_process->websiteDataStore().hasProcess(m_process.get()), "Only processes with pages should be registered with the data store"); 251 251 m_process->setIsInProcessCache(true); 252 252 m_evictionTimer.startOneShot(cachedProcessLifetime);
Note:
See TracChangeset
for help on using the changeset viewer.