Changeset 74996 in webkit


Ignore:
Timestamp:
Jan 4, 2011 12:47:06 PM (13 years ago)
Author:
ddkilzer@apple.com
Message:

<http://webkit.org/b/51889> WebFrameLoaderClient::createMediaPlayerProxyPlugin() should use WebCore::PluginInfo.name

Reviewed by Eric Carlson.

This originally broke in r61581. It is inside an
ENABLE(PLUGIN_PROXY_FOR_VIDEO) macro, so it didn't break the Mac
build then.

  • WebCoreSupport/WebFrameLoaderClient.mm: Call

(WebFrameLoaderClient::createMediaPlayerProxyPlugin): Updated to
use WebCore::PluginInfo.name instead of
-[WebBasePluginPackage name].

Location:
trunk/WebKit/mac
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/mac/ChangeLog

    r74887 r74996  
     12011-01-04  David Kilzer  <ddkilzer@apple.com>
     2
     3        <http://webkit.org/b/51889> WebFrameLoaderClient::createMediaPlayerProxyPlugin() should use WebCore::PluginInfo.name
     4
     5        Reviewed by Eric Carlson.
     6
     7        This originally broke in r61581.  It is inside an
     8        ENABLE(PLUGIN_PROXY_FOR_VIDEO) macro, so it didn't break the Mac
     9        build then.
     10
     11        * WebCoreSupport/WebFrameLoaderClient.mm: Call
     12        (WebFrameLoaderClient::createMediaPlayerProxyPlugin): Updated to
     13        use WebCore::PluginInfo.name instead of
     14        -[WebBasePluginPackage name].
     15
    1162011-01-02  Dan Bernstein  <mitz@apple.com>
    217
  • trunk/WebKit/mac/WebCoreSupport/WebFrameLoaderClient.mm

    r74571 r74996  
    18671867    if (errorCode) {
    18681868        NSError *error = [[NSError alloc] _initWithPluginErrorCode:errorCode
    1869             contentURL:URL pluginPageURL:nil pluginName:[pluginPackage name] MIMEType:mimeType];
     1869            contentURL:URL pluginPageURL:nil pluginName:[pluginPackage pluginInfo].name MIMEType:mimeType];
    18701870        WebNullPluginView *nullView = [[[WebNullPluginView alloc] initWithFrame:NSMakeRect(0, 0, size.width(), size.height())
    18711871            error:error DOMElement:kit(element)] autorelease];
Note: See TracChangeset for help on using the changeset viewer.