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

Changeset 235407 in webkit


Ignore:
Timestamp:
Aug 27, 2018, 4:29:42 PM (8 years ago)
Author:
achristensen@apple.com
Message:

Fix plug-ins after r235398
https://bugs.webkit.org/show_bug.cgi?id=188997

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::findPlugin):

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r235403 r235407  
     12018-08-27  Alex Christensen  <achristensen@webkit.org>
     2
     3        Fix plug-ins after r235398
     4        https://bugs.webkit.org/show_bug.cgi?id=188997
     5
     6        * UIProcess/WebPageProxy.cpp:
     7        (WebKit::WebPageProxy::findPlugin):
     8
    192018-08-27  Aditya Keerthi  <akeerthi@apple.com>
    210
  • trunk/Source/WebKit/UIProcess/WebPageProxy.cpp

    r235403 r235407  
    21942194
    21952195#if PLATFORM(COCOA)
    2196     if (m_navigationClient)
     2196    if (m_navigationClient) {
    21972197        m_navigationClient->decidePolicyForPluginLoad(*this, static_cast<PluginModuleLoadPolicy>(pluginLoadPolicy), pluginInformation.get(), WTFMove(findPluginCompletion));
     2198        return;
     2199    }
    21982200#endif
    21992201    findPluginCompletion(pluginLoadPolicy, { });
Note: See TracChangeset for help on using the changeset viewer.