Changeset 209639 in webkit


Ignore:
Timestamp:
Dec 9, 2016 5:24:59 PM (7 years ago)
Author:
Simon Fraser
Message:

Fix initialization of contentUpdateFrequency
https://bugs.webkit.org/show_bug.cgi?id=165705
rdar://problem/29602039

Reviewed by Tim Horton.

The value that controls web content update frequency was not being initialized.

  • UIProcess/API/Cocoa/WKWebViewConfiguration.mm:

(-[WKWebViewConfiguration init]):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r209635 r209639  
     12016-12-09  Simon Fraser  <simon.fraser@apple.com>
     2
     3        Fix initialization of contentUpdateFrequency
     4        https://bugs.webkit.org/show_bug.cgi?id=165705
     5        rdar://problem/29602039
     6
     7        Reviewed by Tim Horton.
     8
     9        The value that controls web content update frequency was not being initialized.
     10
     11        * UIProcess/API/Cocoa/WKWebViewConfiguration.mm:
     12        (-[WKWebViewConfiguration init]):
     13
    1142016-12-09  Anders Carlsson  <andersca@apple.com>
    215
  • trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebViewConfiguration.mm

    r209294 r209639  
    150150        _mediaTypesRequiringUserActionForPlayback = WKAudiovisualMediaTypeAll;
    151151    _ignoresViewportScaleLimits = NO;
     152    _contentUpdateFrequency = 60;
    152153#else
    153154    _mediaTypesRequiringUserActionForPlayback = WKAudiovisualMediaTypeNone;
Note: See TracChangeset for help on using the changeset viewer.