Changeset 243809 in webkit
- Timestamp:
- Apr 3, 2019, 10:23:33 AM (7 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/http/tests/adClickAttribution/store-ad-click-attribution-expected.txt (modified) (1 diff)
-
Source/WebKit/ChangeLog (modified) (1 diff)
-
Source/WebKit/UIProcess/WebPageProxy.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r243808 r243809 1 2019-04-03 Alex Christensen <achristensen@webkit.org> 2 3 Resurrect and fix layout test http/tests/adClickAttribution/store-ad-click-attribution.html 4 https://bugs.webkit.org/show_bug.cgi?id=196476 5 6 Reviewed by Chris Dumez. 7 8 * http/tests/adClickAttribution/store-ad-click-attribution-expected.txt: 9 1 10 2019-04-03 Daniel Bates <dabates@apple.com> 2 11 -
trunk/LayoutTests/http/tests/adClickAttribution/store-ad-click-attribution-expected.txt
r243767 r243809 2 2 3 3 4 No stored Ad Click Attribution data. 4 WebCore::AdClickAttribution 1 5 Source: 127.0.0.1 6 Destination: localhost 7 Campaign ID: 3 8 No conversion data. -
trunk/Source/WebKit/ChangeLog
r243808 r243809 1 2019-04-03 Alex Christensen <achristensen@webkit.org> 2 3 Resurrect and fix layout test http/tests/adClickAttribution/store-ad-click-attribution.html 4 https://bugs.webkit.org/show_bug.cgi?id=196476 5 6 Reviewed by Chris Dumez. 7 8 Re-apply a change I reverted in r241754 now that it's safe to do so. 9 10 * UIProcess/WebPageProxy.cpp: 11 (WebKit::WebPageProxy::didCommitLoadForFrame): 12 1 13 2019-04-03 Daniel Bates <dabates@apple.com> 2 14 -
trunk/Source/WebKit/UIProcess/WebPageProxy.cpp
r243797 r243809 4146 4146 frame->didCommitLoad(mimeType, webCertificateInfo, containsPluginDocument); 4147 4147 4148 if (navigation && frame->isMainFrame()) { 4149 if (auto& adClickAttribution = navigation->adClickAttribution()) { 4150 if (adClickAttribution->destination().matches(frame->url())) 4151 m_process->processPool().sendToNetworkingProcess(Messages::NetworkProcess::StoreAdClickAttribution(m_websiteDataStore->sessionID(), *adClickAttribution)); 4152 } 4153 } 4154 4148 4155 if (frame->isMainFrame()) { 4149 4156 m_mainFrameHasCustomContentProvider = frameHasCustomContentProvider;
Note:
See TracChangeset
for help on using the changeset viewer.