Summary: | Create SQLite skeleton implementation for PCM fraud prevention | ||||||||
---|---|---|---|---|---|---|---|---|---|
Product: | WebKit | Reporter: | Kate Cheney <katherine_cheney> | ||||||
Component: | WebKit Misc. | Assignee: | Kate Cheney <katherine_cheney> | ||||||
Status: | RESOLVED FIXED | ||||||||
Severity: | Normal | CC: | bfulgham, darin, jiewen_tan, webkit-bug-importer, wilander | ||||||
Priority: | P2 | Keywords: | InRadar | ||||||
Version: | WebKit Nightly Build | ||||||||
Hardware: | Unspecified | ||||||||
OS: | Unspecified | ||||||||
Bug Depends on: | |||||||||
Bug Blocks: | 221291 | ||||||||
Attachments: |
|
Description
Kate Cheney
2021-02-18 17:49:23 PST
Created attachment 420895 [details]
Patch
Comment on attachment 420895 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=420895&action=review LGTM, r=me. Thanks for making this patch. > Source/WebKit/NetworkProcess/Classifier/ResourceLoadStatisticsDatabaseStore.cpp:2966 > + // FIXME: Store these in the attribution object once PCM fraud prevention is in place. You can refer to this radar: <rdar://problem/73582032>. > Source/WebKit/NetworkProcess/Classifier/ResourceLoadStatisticsDatabaseStore.cpp:3017 > + // FIXME: Use real values from the attribution object once PCM fraud prevention is in place. You can refer to this radar: <rdar://problem/73582032>. Created attachment 420898 [details]
Patch
(In reply to Jiewen Tan from comment #3) > Comment on attachment 420895 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=420895&action=review > > LGTM, r=me. Thanks for making this patch. > Thanks -- waiting on EWS before landing. > > Source/WebKit/NetworkProcess/Classifier/ResourceLoadStatisticsDatabaseStore.cpp:2966 > > + // FIXME: Store these in the attribution object once PCM fraud prevention is in place. > > You can refer to this radar: <rdar://problem/73582032>. > Fixed! > > Source/WebKit/NetworkProcess/Classifier/ResourceLoadStatisticsDatabaseStore.cpp:3017 > > + // FIXME: Use real values from the attribution object once PCM fraud prevention is in place. > > You can refer to this radar: <rdar://problem/73582032>. Ditto. Committed r273134: <https://commits.webkit.org/r273134> All reviewed patches have been landed. Closing bug and clearing flags on attachment 420898 [details]. Comment on attachment 420898 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=420898&action=review > Source/WebKit/NetworkProcess/Classifier/ResourceLoadStatisticsDatabaseStore.cpp:274 > +static const String unattributedPrivateClickMeasurementSchemaV1() The const on the return value here is not valuable. We should change these "static const String" to "static String". |