Changeset 247883 in webkit


Ignore:
Timestamp:
Jul 26, 2019 4:48:33 PM (5 years ago)
Author:
Konstantin Tokarev
Message:

[Win] Remove unused methods from WebPluginInfoProvider
https://bugs.webkit.org/show_bug.cgi?id=200178

Reviewed by Brent Fulgham.

These methods are guarded with PLATFORM(MAC) and have no definitions.
Also remove unused friend declaration.

  • WebCoreSupport/WebPluginInfoProvider.h:
Location:
trunk/Source/WebKitLegacy/win
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKitLegacy/win/ChangeLog

    r247855 r247883  
     12019-07-26  Konstantin Tokarev  <annulen@yandex.ru>
     2
     3        [Win] Remove unused methods from WebPluginInfoProvider
     4        https://bugs.webkit.org/show_bug.cgi?id=200178
     5
     6        Reviewed by Brent Fulgham.
     7
     8        These methods are guarded with PLATFORM(MAC) and have no definitions.
     9        Also remove unused friend declaration.
     10
     11        * WebCoreSupport/WebPluginInfoProvider.h:
     12
    1132019-07-25  Fujii Hironori  <Hironori.Fujii@sony.com>
    214
  • trunk/Source/WebKitLegacy/win/WebCoreSupport/WebPluginInfoProvider.h

    r239427 r247883  
    2929
    3030class WebPluginInfoProvider final : public WebCore::PluginInfoProvider {
    31     friend class NeverDestroyed<WebPluginInfoProvider>;
    32 
    3331public:
    3432    static WebPluginInfoProvider& singleton();
     
    3937    Vector<WebCore::PluginInfo> pluginInfo(WebCore::Page&, Optional<Vector<WebCore::SupportedPluginIdentifier>>&) final;
    4038    Vector<WebCore::PluginInfo> webVisiblePluginInfo(WebCore::Page&i, const URL&) final;
    41 #if PLATFORM(MAC)
    42     void setPluginLoadClientPolicy(WebCore::PluginLoadClientPolicy, const String& host, const String& bundleIdentifier, const String& versionString) final;
    43     void clearPluginClientPolicies() final;
    44 #endif
    4539
    4640    WebPluginInfoProvider();
Note: See TracChangeset for help on using the changeset viewer.