Changeset 147964 in webkit


Ignore:
Timestamp:
Apr 8, 2013 4:59:24 PM (11 years ago)
Author:
timothy_horton@apple.com
Message:

Don't run primary plugin detection if plugin snapshotting is off
https://bugs.webkit.org/show_bug.cgi?id=114222
<rdar://problem/13603988>

Reviewed by Dean Jackson.

  • WebProcess/WebPage/WebPage.cpp:

(WebKit::WebPage::determinePrimarySnapshottedPlugIn):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r147963 r147964  
     12013-04-08  Tim Horton  <timothy_horton@apple.com>
     2
     3        Don't run primary plugin detection if plugin snapshotting is off
     4        https://bugs.webkit.org/show_bug.cgi?id=114222
     5        <rdar://problem/13603988>
     6
     7        Reviewed by Dean Jackson.
     8
     9        * WebProcess/WebPage/WebPage.cpp:
     10        (WebKit::WebPage::determinePrimarySnapshottedPlugIn):
     11
    1122013-04-08  Patrick Gansterer  <paroga@webkit.org>
    213
  • trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp

    r147752 r147964  
    39293929void WebPage::determinePrimarySnapshottedPlugIn()
    39303930{
     3931    if (!m_page->settings()->plugInSnapshottingEnabled())
     3932        return;
     3933
    39313934    if (!m_readyToFindPrimarySnapshottedPlugin)
    39323935        return;
Note: See TracChangeset for help on using the changeset viewer.