Changeset 236513 in webkit
- Timestamp:
- Sep 26, 2018, 11:45:23 AM (8 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UIProcess/WebPageProxy.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r236512 r236513 1 2018-09-26 Chris Dumez <cdumez@apple.com> 2 3 Unreviewed, apply post-landing review comments after r236512. 4 5 * UIProcess/WebPageProxy.cpp: 6 (WebKit::WebPageProxy::didCreateMainFrame): 7 (WebKit::WebPageProxy::didCreateSubframe): 8 1 9 2018-09-26 Chris Dumez <cdumez@apple.com> 2 10 -
trunk/Source/WebKit/UIProcess/WebPageProxy.cpp
r236512 r236513 3358 3358 void WebPageProxy::didCreateMainFrame(uint64_t frameID) 3359 3359 { 3360 // The DecidePolicyForNavigationActionSync IPC is synchronous and may therefore get processed before the DidCreateMainFrame one. 3361 // When this happens, decidePolicyForNavigationActionSync() calls didCreateMainFrame() and we need to ignore the DidCreateMainFrame 3362 // IPC when it later gets processed. 3360 3363 if (m_mainFrame && m_mainFrame->frameID() == frameID) 3361 3364 return; … … 3384 3387 MESSAGE_CHECK(m_mainFrame); 3385 3388 3389 // The DecidePolicyForNavigationActionSync IPC is synchronous and may therefore get processed before the DidCreateSubframe one. 3390 // When this happens, decidePolicyForNavigationActionSync() calls didCreateSubframe() and we need to ignore the DidCreateSubframe 3391 // IPC when it later gets processed. 3386 3392 if (m_process->webFrame(frameID)) 3387 3393 return;
Note:
See TracChangeset
for help on using the changeset viewer.