Changeset 19135 in webkit


Ignore:
Timestamp:
Jan 25, 2007 3:51:27 PM (17 years ago)
Author:
kdecker
Message:

Backed out my last patch because it crashes espn.com. Stay tuned for a newer version..

  • Plugins/WebBaseNetscapePluginStream.m: (-[WebBaseNetscapePluginStream setPlugin:]): Removed call to streamIsDead.
  • Plugins/WebBaseNetscapePluginView.h: Removed streamIsDead.
  • Plugins/WebBaseNetscapePluginView.mm: Ditto.
Location:
trunk/WebKit
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/ChangeLog

    r19132 r19135  
     12007-01-25  Kevin Decker <kdecker@apple.com>
     2
     3        Backed out my last patch because it crashes espn.com. Stay tuned for a newer version..
     4
     5        * Plugins/WebBaseNetscapePluginStream.m:
     6        (-[WebBaseNetscapePluginStream setPlugin:]): Removed call to streamIsDead.
     7        * Plugins/WebBaseNetscapePluginView.h: Removed streamIsDead.
     8        * Plugins/WebBaseNetscapePluginView.mm: Ditto.
     9
    1102007-01-25  Darin Adler  <darin@apple.com>
    211
  • trunk/WebKit/Plugins/WebBaseNetscapePluginStream.m

    r19131 r19135  
    176176    } else {
    177177        plugin = NULL;
    178         // pluginView holds the last reference to the stream
    179         [self retain];
    180         [pluginView streamIsDead:self];
    181178        [pluginView release];
    182179        pluginView = nil;
    183         [self release];
    184180        NPP_NewStream = NULL;
    185181        NPP_WriteReady = NULL;
  • trunk/WebKit/Plugins/WebBaseNetscapePluginView.h

    r19131 r19135  
    150150- (void)setAttributeKeys:(NSArray *)keys andValues:(NSArray *)values;
    151151- (void)setMode:(int)theMode;
    152 - (void)streamIsDead:(WebBaseNetscapePluginStream*)stream;
    153152- (void)viewWillMoveToHostWindow:(NSWindow *)hostWindow;
    154153- (void)viewDidMoveToHostWindow;
  • trunk/WebKit/Plugins/WebBaseNetscapePluginView.mm

    r19131 r19135  
    14971497}
    14981498
    1499 - (void)streamIsDead:(WebBaseNetscapePluginStream*)stream;
    1500 {
    1501     [streams removeObjectIdenticalTo:stream];
    1502 }
    1503 
    15041499- (void)dealloc
    15051500{
Note: See TracChangeset for help on using the changeset viewer.