⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 242853 in webkit


Ignore:
Timestamp:
Mar 13, 2019, 1:24:26 AM (7 years ago)
Author:
bshafiei@apple.com
Message:

Cherry-pick r241632. rdar://problem/48839379

Sample domainsVisited diagnostic logging
https://bugs.webkit.org/show_bug.cgi?id=194657

Reviewed by Ryosuke Niwa.

Sample domainsVisited diagnostic logging, we are getting a lot of data from
this key and this is hurting our other keys.

  • page/Page.cpp: (WebCore::Page::logNavigation):

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@241632 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Location:
branches/safari-607-branch/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/safari-607-branch/Source/WebCore/ChangeLog

    r242851 r242853  
     12019-03-13  Babak Shafiei  <bshafiei@apple.com>
     2
     3        Cherry-pick r241632. rdar://problem/48839379
     4
     5    Sample domainsVisited diagnostic logging
     6    https://bugs.webkit.org/show_bug.cgi?id=194657
     7   
     8    Reviewed by Ryosuke Niwa.
     9   
     10    Sample domainsVisited diagnostic logging, we are getting a lot of data from
     11    this key and this is hurting our other keys.
     12   
     13    * page/Page.cpp:
     14    (WebCore::Page::logNavigation):
     15   
     16    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@241632 268f45cc-cd09-0410-ab3c-d52691b4dbfc
     17
     18    2019-02-15  Chris Dumez  <cdumez@apple.com>
     19
     20            Sample domainsVisited diagnostic logging
     21            https://bugs.webkit.org/show_bug.cgi?id=194657
     22
     23            Reviewed by Ryosuke Niwa.
     24
     25            Sample domainsVisited diagnostic logging, we are getting a lot of data from
     26            this key and this is hurting our other keys.
     27
     28            * page/Page.cpp:
     29            (WebCore::Page::logNavigation):
     30
    1312019-03-13  Babak Shafiei  <bshafiei@apple.com>
    232
  • branches/safari-607-branch/Source/WebCore/page/Page.cpp

    r241455 r242853  
    23632363
    23642364    if (!navigation.domain.isEmpty())
    2365         diagnosticLoggingClient().logDiagnosticMessageWithEnhancedPrivacy(DiagnosticLoggingKeys::domainVisitedKey(), navigation.domain, ShouldSample::No);
     2365        diagnosticLoggingClient().logDiagnosticMessageWithEnhancedPrivacy(DiagnosticLoggingKeys::domainVisitedKey(), navigation.domain, ShouldSample::Yes);
    23662366}
    23672367
Note: See TracChangeset for help on using the changeset viewer.